Your account is pending approval from your GitLab administrator and hence blocked.

2024-01-01 03:31

本文主要是介绍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.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/558051

相关文章

Gerrit与Gitlab同步配置replication其他配置

一、Gerrit与Gitlab同步配置 当配置好gerrit环境后,还需要与现有gitlab库进行同步配置,否则会影响现有开发与打包流程。 1.安装gerrit replication插件 unzip gerrit.warcp WEB-INF/plugins/replication.jar ~/temp/ssh -p 29418 admin@172.19.16.64 gerrit plu

配置JAVA环境的时候,环境变量中administrator的用户变量和系统变量的区别?

迁移项目到新的服务器上: 需要Java运行环境时,经常要配置环境变量,如图所示 这里有administrator的用户变量(U),和系统变量(S), 那么,它们之间有什么区别呢? 简单的说,一个是当前用户使用,你用其它用户登陆,这个环境变量就不起作用了。 系统变量,是对所有用户都可使用的。 简单的说: 系统变量:不管以哪个用户名登陆到计算机都能使

git命令上传代码到gitHub、gitLab

1 、输入git账号和密码 git config --global user.name"git账号" git config --global user.name"密码" 2.添加要上传的SSH (如果你的文件已经有了SSH,删除本身有的)git remote rm origin 添加 git remote add origin SSH或http 3 添加本地的所有文件  git ad

【gitlab 上传代码】gitlab 推送本地代码到远程仓库

1、安装git。 2、新建项目,只勾选私有,或者公开,注意不要勾选readme 3、添加和配置SSH公钥 cd ~/.ssh如果提示 “ No such file or directory”,手动的创建一个 .ssh文件夹即可mkdir ~/.sshgit config --global user.name "赖德发"git config --global user.email "lai

828华为云征文|华为云Flexus X实例docker部署最新gitlab社区版,搭建自己的私人代码仓库

828华为云征文|华为云Flexus X实例docker部署最新gitlab社区版,搭建自己的私人代码仓库 华为云最近正在举办828 B2B企业节,Flexus X实例的促销力度非常大,特别适合那些对算力性能有高要求的小伙伴。如果你有自建MySQL、Redis、Nginx等服务的需求,一定不要错过这个机会。赶紧去看看吧! 什么是华为云Flexus X实例 华为云Flexus X实例云服务是新

k8s集群本地搭建,使用gitlab、harbor、jenkens、cicd来实现devops自动化构建

k8s集群本地搭建 准备:一台windows即可我windows内存是32gb的,6核,每核2线程全程使用终端 ssh命令操作.我是直接用的mac点操作windows,然后windows连接虚拟机即可.虚拟机记得改网卡,这样才能保证以后ip不变.介绍:k8s集群本地搭建(1master、2node)k8x运用devops来自动化构建服务(gitlab、harbor、jenkens、cicd)简介

三十分钟完成 Gitlab 搭建安装指南(支持 HTTPS 访问)

背景 由于我们早期使用 phabricator 进行代码管理,但是在使用的过程当中发现和社区的 github 使用方式有些不同,所以为了让大伙都习惯 github 社区相同的使用风格,所以我们换成了 gitlab 作为公司内部的代码管理系统;并且其强大的 CI/CD 的方式为后续的持续集成工作打下基础。 注意 Gitlab 分为 社区版 (gitlab-ce) 与 企业版 (gitlab-ee)

gitlab结合docker实现CI/CD

gitlab的continue integration 和 continue delivery,因为高可用尚未实现暂时不做continue deployment 1.部署gitlab-runner 官网:https://docs.gitlab.com/runner/install/docker.html centos7下docker部署方式。 docker run -d -

Gitlab删除本地标签和分支

Gitlab 删除本地分支 删除分支 git branch -d <BranchName> 删除标签 要删除本地 Git 标签,可以按照以下步骤操作: 使用 git tag 命令查看本地已有标签。 根据需要选择要删除的标签名称。 使用 git tag -d 命令删除选择的标签。 git tag -d <TagName> 使用 git tag 命令确认标签已被删除。

10步大法教你搭建自己的Gitlab代码仓库

1.前置条件 你得有一个搭载Centos7 + 以上版本的虚拟机。不会的可以参考,搭建Centos7 linux系统。 2.准备远程工具 也就是连接Linux服务器的远程工具,例如:xshell、fianlShell等,与linux建立通讯后,接下来就是本文的重点了。 3.搭建阶段 1.配置yum源 step1:相当于新建一个文件,通过这个文件来安装gitlab,执行下面命