2015-05-30 27 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

奇怪的系统重新启动该开始工作。我仍然困惑为什么它没有。