0

使用:

  • OpenSSH_6.2p2,OSSLShim 0.9.8r 2011 年 12 月 8 日
  • OSX:10.10.5

我正在关注AWS CodeCommit 设置

我的配置文件如下所示:

HostName git-codecommit.us-east-1.amazonaws.com
  User <myuserid that is supplied from aws is here>
  IdentityFile ~/.ssh/codecommit_rsa

但它没有访问该本地配置文件。它一直在寻找 id_rsa 并且我得到Permission denied (publickey)。我可以 ssh 的唯一方法是手动运行:

ssh -i codecommit_rsa <myuserid from amazon>@git-codecommit.us-east-1.amazonaws.com

从 ssh -v :

CLI-24420:.ssh nsturgess$ ssh -v git-codecommit.us-east-1.amazonaws.com
OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug1: Connecting to git-codecommit.us-east-1.amazonaws.com [54.239.20.155] port 22.
debug1: Connection established.
debug1: identity file /Users/nsturgess/.ssh/id_rsa type -1
debug1: identity file /Users/nsturgess/.ssh/id_rsa-cert type -1
debug1: identity file /Users/nsturgess/.ssh/id_dsa type -1
debug1: identity file /Users/nsturgess/.ssh/id_dsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2
debug1: Remote protocol version 2.0, remote software version AWSCodeCommit VHVlLCAxMiBKYW4gMjAxNiAyMTo1NjowMCArMDAwMOVgljlXewI0PWsqvMExhuwd1npoXpT8tFGX2PJoBfPLVW
debug1: no match: AWSCodeCommit VHVlLCAxMiBKYW4gMjAxNiAyMTo1NjowMCArMDAwMOVgljlXewI0PWsqvMExhuwd1npoXpT8tFGX2PJoBfPLVWh2dkRHbCtza1J3WWNXVWNVU2llek9SZ0MvU24yS1lLdGQxTUFGOTNOeEU9
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-sha1 none
debug1: kex: client->server aes128-ctr hmac-sha1 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<2048<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: Server host key: RSA a6:9c:7d:bc:35:f5:d4:5f:8b:ba:6f:c8:bc:d4:83:84
debug1: Host 'git-codecommit.us-east-1.amazonaws.com' is known and matches the RSA host key.
debug1: Found key in /Users/nsturgess/.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: 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: /Users/nsturgess/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 279
debug1: Authentications that can continue: publickey
debug1: Offering RSA public key: /Users/nsturgess/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 279
debug1: Authentications that can continue: publickey
debug1: Offering RSA public key: /Users/nsturgess/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 279
debug1: Authentications that can continue: publickey
debug1: Offering RSA public key: codecommit_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 279
debug1: Authentications that can continue: publickey
debug1: Trying private key: /Users/nsturgess/.ssh/id_rsa
debug1: Trying private key: /Users/nsturgess/.ssh/id_dsa
debug1: No more authentication methods to try.
Permission denied (publickey).

有人可以暗示我在这里做错了吗?

4

1 回答 1

0

解决方案是,由于某种原因,创建时的配置文件是针对root的,因此在更改所有权后它起作用了!

于 2016-01-12T22:39:06.213 回答