2015-05-30 26 views
1

我想爲bitbucket設置替代SSH密鑰。我已經按照這個文件:Bitbucket - 替代SSH密鑰連接不工作

https://confluence.atlassian.com/pages/viewpage.action?pageId=271943168

我的.ssh/config中

Host test 
HostName bitbucket.org 
IdentityFile ~/.ssh/id_rsa_alt 

但是使用 「測試」 的連接不能正常工作。我調試輸出是這樣的:

當我嘗試調試:

[[email protected] tmp3]$ ssh -Tv [email protected] 
OpenSSH_6.8p1, OpenSSL 1.0.2a 19 Mar 2015 
debug1: Reading configuration data /home/user/.ssh/config 
debug1: /home/user/.ssh/config line 1: Applying options for test 
debug1: Reading configuration data /etc/ssh/ssh_config 
debug1: Connecting to bitbucket.org [131.103.20.167] port 22. 
debug1: Connection established. 
debug1: identity file /home/user/.ssh/id_rsa_alt type 1 
debug1: key_load_public: No such file or directory 
debug1: identity file /home/user/.ssh/id_rsa_alt-cert type -1 
debug1: Enabling compatibility mode for protocol 2.0 
debug1: Local version string SSH-2.0-OpenSSH_6.8 
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3 
debug1: match: OpenSSH_5.3 pat OpenSSH_5* compat 0x0c000000 
debug1: SSH2_MSG_KEXINIT sent 
debug1: SSH2_MSG_KEXINIT received 
debug1: kex: server->client aes128-ctr [email protected] none 
debug1: kex: client->server aes128-ctr [email protected] none 
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<3072<8192) sent 
debug1: got SSH2_MSG_KEX_DH_GEX_GROUP 
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent 
debug1: got SSH2_MSG_KEX_DH_GEX_REPLY 
debug1: Server host key: ssh-rsa SHA256:zzXQOXSRBEiUtuE8AikJYKwbHaxvSc0ojez9YXaGp1A 
debug1: Host 'bitbucket.org' is known and matches the RSA host key. 
debug1: Found key in /home/user/.ssh/known_hosts:20 
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 
debug1: Next authentication method: publickey 
debug1: Offering RSA public key: /home/user/.ssh/id_rsa 
debug1: Remote: Forced command: conq username:otheruser 
debug1: Remote: Port forwarding disabled. 
debug1: Remote: X11 forwarding disabled. 
debug1: Remote: Agent forwarding disabled. 
debug1: Remote: Pty allocation disabled. 
debug1: Server accepts key: pkalg ssh-rsa blen 279 
debug1: Remote: Forced command: conq username:otheruser 
debug1: Remote: Port forwarding disabled. 
debug1: Remote: X11 forwarding disabled. 
debug1: Remote: Agent forwarding disabled. 
debug1: Remote: Pty allocation disabled. 
debug1: Authentication succeeded (publickey). 
Authenticated to bitbucket.org ([131.103.20.167]:22). 
debug1: channel 0: new [client-session] 
debug1: Requesting [email protected] 
debug1: Entering interactive session. 
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0 
debug1: client_input_channel_req: channel 0 rtype [email protected] reply 0 
logged in as otheruser. 

You can use git or hg to connect to Bitbucket. Shell access is disabled. 
debug1: channel 0: free: client-session, nchannels 1 
Transferred: sent 3656, received 3400 bytes, in 0.1 seconds 
Bytes per second: sent 28045.6, received 26081.8 
debug1: Exit status 0 

我不知道爲什麼,但它出現在連接使用了錯誤的ID(/家/用戶/最終確立。 ssh/id_rsa),無論我在.ssh/config中的IdentityFile中指定了什麼。我懷疑它有什麼關係:

debug1: key_load_public: No such file or directory 

但我不知道爲什麼它無法找到它。我清楚地看到兩個文件:

id_rsa_alt 
id_rsa_alt.pub 

我有一個github的工作類似的設置。

+0

你最終解決了這個問題嗎?怎麼樣?我按照下面的建議嘗試了chmod,但不幸的是仍然沒有工作。 –

+0

在我的評論下面我說,重新啓動後,事情開始工作。這是一段時間以前,所以我不記得細節。抱歉。 –

回答

0

我懷疑它與id_rsa_alt密鑰的許可有關。嘗試通過執行該命令先改變它的權限:後

chmod 600 id_rsa_alt

0

奇怪的系統重新啓動該開始工作。我仍然困惑爲什麼它沒有。