本文主要是介绍Your account is pending approval from your GitLab administrator and hence blocked.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
GitLab登录时报错,错误如下:
Your account is pending approval from your GitLab administrator and hence blocked. Please contact your GitLab administrator if you think this is an error.
解决办法:
[root@gitlab ~]# docker exec -it 89bc35417d8b bash
root@89bc35417d8b:/# cd /opt/gitlab/bin/
root@89bc35417d8b:/opt/gitlab/bin#
root@89bc35417d8b:/opt/gitlab/bin# ls
gitlab-backup gitlab-healthcheck gitlab-rails gitlab-redis-cli
gitlab-ctl gitlab-psql gitlab-rake gitlab-ruby
root@89bc35417d8b:/opt/gitlab/bin# gitlab-rails console
--------------------------------------------------------------------------------Ruby: ruby 2.7.5p203 (2021-11-24 revision f69aeb8314) [x86_64-linux]GitLab: 14.6.1 (661d663ab2b) FOSSGitLab Shell: 13.22.1PostgreSQL: 12.7
--------------------------------------------------------------------------------
Loading production environment (Rails 6.1.4.1)irb(main):009:0> u=User.where(id:1).first
=> #<User id:1 @root>
irb(main):010:0> u.password='12345678'
=> "12345678"
irb(main):011:0> u.password_confirmation='12345678'
=> "12345678"
irb(main):012:0> u.save
=> true
irb(main):013:0>
进入容器
执行命令
再次登录
用户名是root
密码是12345678
这篇关于Your account is pending approval from your GitLab administrator and hence blocked.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!