Skip to content
Snippets Groups Projects
Commit 8a01a122 authored by Robert Speicher's avatar Robert Speicher
Browse files

Change default admin password from "5iveL!fe" to "password"

parent d2de219f
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -62,7 +62,7 @@ The recommended way to install GitLab is using the provided [Omnibus packages](h
 
There are various other options to install GitLab, please refer to the [installation page on the GitLab website](https://about.gitlab.com/installation/) for more information.
 
You can access a new installation with the login **`root`** and password **`5iveL!fe`**, after login you are required to set a unique password.
You can access a new installation with the login **`root`** and password **`password`**, after login you are required to set a unique password.
 
## Third-party applications
 
Loading
Loading
Loading
Loading
@@ -5,7 +5,7 @@
s.email = 'admin@example.com'
s.notification_email = 'admin@example.com'
s.username = 'root'
s.password = '5iveL!fe'
s.password = 'password'
s.admin = true
s.projects_limit = 100
s.confirmed_at = DateTime.now
Loading
Loading
if ENV['GITLAB_ROOT_PASSWORD'].blank?
password = '5iveL!fe'
password = 'password'
expire_time = Time.now
else
password = ENV['GITLAB_ROOT_PASSWORD']
Loading
Loading
Loading
Loading
@@ -404,7 +404,7 @@ NOTE: Supply `SANITIZE=true` environment variable to `gitlab:check` to omit proj
Visit YOUR_SERVER in your web browser for your first GitLab login. The setup has created a default admin account for you. You can use it to log in:
 
root
5iveL!fe
password
 
**Important Note:** On login you'll be prompted to change the password.
 
Loading
Loading
Loading
Loading
@@ -13,7 +13,7 @@ It might take a while before the docker container is responding to queries.
 
You can check the status with something like `sudo docker logs -f 7c10172d7705`.
 
You can login to the web interface with username `root` and password `5iveL!fe`.
You can login to the web interface with username `root` and password `password`.
 
Next time, you can just use docker start and stop to run the container.
 
Loading
Loading
@@ -159,4 +159,4 @@ sudo docker push sytse/gitlab-data
 
## Troubleshooting
 
Please see the [troubleshooting](troubleshooting.md) file in this directory.
\ No newline at end of file
Please see the [troubleshooting](troubleshooting.md) file in this directory.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment