Skip to content

Instantly share code, notes, and snippets.

@salehi
Created December 29, 2025 10:26
Show Gist options
  • Select an option

  • Save salehi/29f9aa135dd6be44e5b57ca6a0a0dc8a to your computer and use it in GitHub Desktop.

Select an option

Save salehi/29f9aa135dd6be44e5b57ca6a0a0dc8a to your computer and use it in GitHub Desktop.
Gitlab Console reset password

Get in the rails console

sudo gitlab-rails console -e production

then:

user = User.find_by_username('root')
user.password = 'new_password_here'
user.password_confirmation = 'new_password_here'
user.save!
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment