0
1

More than 3 years have passed since last update.

gitlab-ceのパスワードリセット

Posted at

サンプルで rootパスワード忘れた場合を試してみた

 $ sudo su -
 $ gitlab-rails console -e production
user = User.find_by_username 'root'
user.password = 'password'
user.password_confirmation = 'password'
user.send_only_admin_changed_your_password_notification!
user.save!

最近のアプデで user.send_only_admin_changed_your_password_notification! が追加されたから、ドキュメントしっかり読まないと更新できないっぽい

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1