gitlab密码重置

1.远程或者本地登陆至安装GitLab的服务器,该步骤比较简单略过。

2.登陆至GitLab数据库

在终端输入gitlab-rails console production


3.输入:user=User.where(email:'你的email地址或者用户名').first //email 为gitlabuser 账户,我的是默认的管理员


例如:user = User.where(email: '[email protected]').first //email 为gitlabuser 账户,我的是默认的管理员账户

4.重置密码

irb(main):007:0>user.password = 'yourpassword'   //密码必须至少8个字符

5.保存

6.重新在GitLab登陆,成功登陆!

你可能感兴趣的:(GitLab,项目管理)