2015-05-08 10:35:05 -04:00
|
|
|
# How to reset your root password
|
2015-04-28 18:42:19 -04:00
|
|
|
|
|
|
|
Log into your server with root privileges. Then start a Ruby on Rails console.
|
|
|
|
|
|
|
|
Start the console with this command:
|
|
|
|
|
|
|
|
```bash
|
2015-05-07 12:48:25 -04:00
|
|
|
gitlab-rails console production
|
2015-04-28 18:42:19 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Wait until the console has loaded.
|
|
|
|
|
|
|
|
There are multiple ways to find your user. You can search for email or username.
|
|
|
|
|
|
|
|
```bash
|
2015-05-08 10:36:24 -04:00
|
|
|
user = User.where(id: 1).first
|
2015-05-07 12:48:25 -04:00
|
|
|
```
|
|
|
|
|
2015-04-28 18:42:19 -04:00
|
|
|
or
|
2015-05-07 12:48:25 -04:00
|
|
|
|
|
|
|
```bash
|
2015-04-28 18:42:19 -04:00
|
|
|
user = User.find_by(email: 'admin@local.host')
|
|
|
|
```
|
|
|
|
|
|
|
|
Now you can change your password:
|
|
|
|
|
|
|
|
```bash
|
2015-05-08 10:36:24 -04:00
|
|
|
user.password = 'secret_pass'
|
|
|
|
user.password_confirmation = 'secret_pass'
|
2015-04-28 18:42:19 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
It's important that you change both password and password_confirmation to make it work.
|
|
|
|
|
|
|
|
Don't forget to save the changes.
|
|
|
|
|
|
|
|
```bash
|
2015-05-08 10:36:24 -04:00
|
|
|
user.save!
|
2015-04-28 18:42:19 -04:00
|
|
|
```
|
|
|
|
|
2015-05-07 12:48:25 -04:00
|
|
|
Exit the console and try to login with your new password.
|