安装了 gitlab,Web 界面和日志表明一切都已启动并正在运行。但是,当我尝试向它推送一个新的仓库时,它失败了(对于 http):
[gerry@boundary ct12Logger]$ git push -u origin master --verbose
Pushing to http://aaaa.bbbb.cccc.gov:8080/gerry/ct12-logging.git
error: The requested URL returned error: 401 Unauthorized while accessing http://aaaa.bbbb.cccc.gov:8080/gerry/ct12-logging.git/info/refs
fatal: HTTP request failed
同样,通过 ssh 尝试...
[gerry@boundary ct12Logger]$ git remote rm origin
[gerry@boundary ct12Logger]$ git remote add origin git@aaaa.bbbb.cccc.gov:gerry/ct12-logging.git
[gerry@boundary ct12Logger]$ git push -u origin master --verbose
Pushing to git@aaaa.bbbb.cccc.gov:gerry/ct12-logging.git
Access denied.
fatal: The remote end hung up unexpectedly
这一切都安装在 RHEL 6.4 系统上。状态请求声称 sidekiq 和 gitlab 运行正常。我处于死胡同,我会很感激我可以尝试的一些想法。
另一个数据点:虽然我已经适当地设置了我的用户名,但是当我执行以下操作时,
ssh -T git@aaaa.bbbb.cccc.gov
我得到以下信息:
Welcome to GitLab, Anonymous!
这向我表明 git 没有正确找到用户名......