sh gitlab重置管理员密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh gitlab重置管理员密码相关的知识,希望对你有一定的参考价值。
#!/bin/sh
#https://forum.gitlab.com/t/how-to-reset-the-admin-password-via-the-rails-console/223
# Change to gitlab directory. Normally, /home/git/gitlab.
cd /srv/git/gitlab
sudo -u git -H bundle exec rails console production
user = User.find_by(email: 'admin@local.host')
user.password = 'secret_pass'
user.password_confirmation = 'secret_pass'
user.save
user = User.find(1)
以上是关于sh gitlab重置管理员密码的主要内容,如果未能解决你的问题,请参考以下文章
gitlab重置root的密码
Gitlab系列八之重置管理员密码
Gitlab数据备份及数据恢复重置gitlab管理密码方法
gitlab重置用户密码
gitlab管理员账号密码忘记怎么办?
Gitlab 重置密码