好的,我很多次都偶然發現了這個話題,但這是第一次沒有常規解決方案工作。GitLab SSH密鑰停止工作
我有一臺運行GitLab的CentOS 6.4服務器。它在20多個用戶和60多個項目中工作良好,但大約5小時前,我的主登臺服務器無法首次使用密鑰身份驗證連接到GitLab計算機,並且它提示輸入密碼。我重新生成了RSA密鑰並將其添加到我的部署密鑰中,但也失敗了。
接下來,我嘗試在登臺服務器上創建一個新用戶,爲其創建一個密鑰,並將其添加到GitLab,但仍然失敗。
權限:
drwxr-x--- 22 root root 4.0K Oct 28 13:20 root
內部根:
drwx------ 2 root root 4096 Oct 28 11:49 .ssh
內的.ssh:
-rw------- 1 root root 227 Oct 28 11:48 authorized_keys
-rw------- 1 root root 1675 Oct 28 13:09 id_rsa
-rw------- 1 root root 398 Oct 28 13:09 id_rsa.pub
-rw-r--r-- 1 root root 413 Oct 28 11:49 known_hosts
當我嘗試連接到GIT機:
OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to git.mygitlab.com [212.29.122.24] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/identity type -1
debug1: identity file /root/.ssh/id_rsa type 1
debug1: identity file /root/.ssh/id_dsa type -1
debug1: loaded 3 keys
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.3
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'git.mygitlab.com' is known and matches the RSA host key.
debug1: Found key in /root/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with- mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found
debug1: Next authentication method: publickey
debug1: Offering public key: /root/.ssh/id_rsa
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with- mic,password
debug1: Trying private key: /root/.ssh/identity
debug1: Trying private key: /root/.ssh/id_dsa
debug1: Next authentication method: password
[email protected]'s password:
當我通過Web界面添加SSH密鑰時,它們不會被添加到.ssh/authorized_keys
。
我真的不知道下一步該怎麼嘗試:(
你看到你的公鑰在'git.mygitlab.com:〜git/.ssh/authorized_keys'嗎? – VonC
居然沒有!我在gitlab服務器上的授權密鑰文件中有49個密鑰,當我添加其他密鑰時,他們不會出現 – SlipY
所以這就是問題所在。 gitlab中是否有任何會留下線索的日誌? – VonC