1.使用root用户登录服务器
2.进入GitLab的安装目录,一般是 /opt/gitlab/
3.执行以下命令重置密码:
bash
sudo gitlab-rails console
user = User.where(id: 1).first
user.password = 'new password'
user.password_confirmation = 'new password'
user.save!
退出控制台,重启GitLab服务,新密码生效
以上命令中的"new password"指的是你要设置的新密码,可以根据需要进行更改。