- 登陆Gitlab服务器
- 进入数据库目录查看数据库配置信息:cat /var/opt/gitlab/gitlab-rails/etc/database.yml
- 登录数据库用户 su - gitlab-psql
- 连接库 psql -h /var/opt/gitlab/postgresql -d gitlabhq_production
- 查询用户 select * from users where email = ‘普通用户邮箱地址’;
- 更新为管理员 update users set admin=‘t’ where id = 普通用户ID;