16

我是 gitlab 和 CI 的新手,所以我有很多问题,但其中一些是通过 google、SO、git mans 解决的,但不是最后一个......

我无法通过 ssh 克隆 repo =(

如果我尝试通过 http 克隆 repo:

lesha@lesha-SeoTeam:/var/www$ git clone http://gitlab.vbox/root/virtualboxgitlab.git
Cloning into 'virtualboxgitlab'...
Username for 'http://gitlab.vbox': root
Password for 'http://root@gitlab.vbox':
warning: You appear to have cloned an empty repository.

没关系!

但是通过 ssh ...

lesha@lesha-SeoTeam:/var/www$ git clone git@gitlab.vbox:root/virtualboxgitlab.git
Cloning into virtualbox 'gitlab'
git@gitlab.vbox's password:<br />   

它提示我在安装过程中没有创建的 git 密码(就像我在 man 中一样)

rsa keys

我通过 gitlab 的网络添加了我的密钥(到帐户根,实际上我没有创建任何其他帐户)

我还通过“cat my_rsa.pub >> authorized_keys”添加了密钥

我在这里读了几篇关于 ssh 问题的帖子,但大多数都安装了 gitolite

我安装了没有 gitolite 的 gitlab 5.3(如手册中所示),我应该这样做吗?

我也试过ssh -vT git@gitlab.vbox了,它输出:

....
debug1: Server host key: ECDSA 48:83:ba:b3:37:72:a0:dc:ca:2c:a3:b8:78:a1:c4:ad
debug1: Host 'gitlab.vbox' is known and matches the ECDSA host key.
debug1: Found key in /home/lesha/.ssh/known_hosts:2
debug1: ssh_ecdsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/lesha/.ssh/id_rsa
debug1: Authentications that can continue: publickey,password
debug1: Trying private key: /home/lesha/.ssh/id_dsa
debug1: Trying private key: /home/lesha/.ssh/id_ecdsa
debug1: Next authentication method: password
git@gitlab.vbox's password:


root@seotm-server:/home/git/.ssh# ls -l
итого 4
-rw------- 1 git git 922 Июл 18 21:05 authorized_keys

环境:debian 7,nginx + 乘客,gitlab 5.3,ruby 2.0.0p247,没有 gitolite,puma 对抗独角兽

请帮忙!=)我被困住了......


一些补充(20.07.2013):

我在手动安装中创建了用户 git

sudo adduser --disabled-login --gecos 'GitLab' git

第二天,我试图简单地通过useradd命令杀死 git 并重新添加,之后我的键正在工作,但我仍然不高兴,因为:

lesha@lesha-SeoTeam:/var/www$ git clone git@gitlab.vbox:root/virtualboxgitlab.git
Cloning into 'virtualboxgitlab'...
fatal: 'root/virtualboxgitlab.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

和 http 和以前一样工作:

lesha@lesha-SeoTeam:/var/www$ git clone http://gitlab.vbox/root/virtualboxgitlab.git
Cloning into 'virtualboxgitlab'...
Username for 'http://gitlab.vbox': root
Password for 'http://root@gitlab.vbox': 
warning: You appear to have cloned an empty repository.

所以,现在我没有身份验证问题,但有另一个问题。

您将如何从那里解决此问题?

4

1 回答 1

6

GitLab 5.x 不再使用 gitolite 了,但是gitlab-shell.

我建议按照安装过程中的建议创建一个专用帐户。

ssh git@gitlab.vbox

gitlab.vbox该 ssh 命令意味着您正在以用户 ' ' 的身份在 ' ' 上请求安全 shell git。如果该用户不存在......它将无法工作。

如果测试运行不正常,则无需尝试克隆 repo:

sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production

OP报告 ssh在创建 git 用户并添加密钥后效果更好,但是:

  • 首先确保您在“客户”帐户上创建密钥,而不是在~git/.ssh/id_rsa:您正在尝试git从客户帐户打开会话。git是安装 gitlab 的账号。
  • 然后,您应该在您通过 gitlab gui 声明的用户帐户的 ssh 页面中注册您的公钥。您不应该useraddssh 用于 root 。

如果你看到这个:

lesha@lesha-SeoTeam:/var/www$ git clone git@gitlab.vbox:root/virtualboxgitlab.git
Cloning into 'virtualboxgitlab'...
fatal: 'root/virtualboxgitlab.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

这也意味着您不应该指定 repo ( root/) 的路径:

 git clone git@gitlab.vbox:virtualboxgitlab.git

了解 virtualboxgitlab.git 的存储位置是 gitlab 的工作(在其gitlab.yml配置文件中指定)

基本上,忘记根,并按预期完成 gitlab 的完整安装:在“ git”帐户中。

OP 使它起作用,并评论说:

" root" 是管理员命名空间,gitlab 自动创建这个 url,没有它克隆不起作用,现在一切都克隆了,我开始安装 gitlab CI,

OP 必须:

将我的用户添加到 sudo 组,进行全新安装,收到错误

/usr/local/lib/ruby/2.0.0/net/http.rb:878:in initialize': getaddrinfo: 
  Name or service not known (SocketError)

无法解析主机名,添加gitlab.vbox/etc/hosts

于 2013-07-19T07:29:43.863 回答