切换到 gitlab-psql 用户下。
然后使用gitlab内部的psql命令进入postgresql数据库内部。
$ /opt/gitlab/embedded/bin/psql -h /var/opt/gitlab/postgresql -d gitlabhq_production
然后操作数据库的CRDU。
强制验证gitlab中用户的第二、三邮箱,更新emails表中的数据
update emails set confirmation_token=null, confirmed_at=now();
强制验证gitlab中用户的主邮箱, 更新users表中的数据的同样的字段即可。