登录到部署gitlab的服务器,强制更新gitlab的root账户密码
步骤
1、使用gitlab-rails console 命令进入gitlab提供的命令行控制环境
2、定位到root账号 user = User.where(id: 1).first
3、为这个root用户设置新的密码 user.password = ‘yourpassword’
4、保存设置: user.save!
- THE END -
最后修改:2023年1月13日
非特殊说明,本博所有文章均为博主原创。
如若转载,请注明出处:https://www.95app.top/gitlab-%e5%bf%98%e8%ae%b0%e5%af%86%e7%a0%81/