Skip to content

Commit

Permalink
Revert "Change default admin password from "5iveL!fe" to "password""
Browse files Browse the repository at this point in the history
This reverts commit 8a01a12.
  • Loading branch information
dosire authored and vsizov committed Jul 15, 2015
1 parent b6646e5 commit f8547fb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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 **`password`**, after login you are required to set a unique password.
You can access a new installation with the login **`root`** and password **`5iveL!fe`**, after login you are required to set a unique password.

## Third-party applications

Expand Down
2 changes: 1 addition & 1 deletion db/fixtures/development/01_admin.rb
Expand Up @@ -5,7 +5,7 @@
s.email = 'admin@example.com'
s.notification_email = 'admin@example.com'
s.username = 'root'
s.password = 'password'
s.password = '5iveL!fe'
s.admin = true
s.projects_limit = 100
s.confirmed_at = DateTime.now
Expand Down
2 changes: 1 addition & 1 deletion db/fixtures/production/001_admin.rb
@@ -1,5 +1,5 @@
if ENV['GITLAB_ROOT_PASSWORD'].blank?
password = 'password'
password = '5iveL!fe'
expire_time = Time.now
else
password = ENV['GITLAB_ROOT_PASSWORD']
Expand Down
2 changes: 1 addition & 1 deletion doc/install/installation.md
Expand Up @@ -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
password
5iveL!fe

**Important Note:** On login you'll be prompted to change the password.

Expand Down
2 changes: 1 addition & 1 deletion docker/README.md
Expand Up @@ -10,7 +10,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 gitlab`.

You can login to the web interface with username `root` and password `password`.
You can login to the web interface with username `root` and password `5iveL!fe`.

Next time, you can just use docker start and stop to run the container.

Expand Down

0 comments on commit f8547fb

Please sign in to comment.