即使在eval ssh-agent之后,ssh-add错误“无法连接...”

时间:2013-08-19 15:33:55

标签: git amazon-web-services ssh bitnami ssh-agent

尝试从git repo中提取,这样做时出现此错误:

Permission denied (publickey)
fatal: The remote end hung up unexpectantly

所以我尝试ssh-add我的密钥文件,为此我做了:

eval ssh-agent
ssh-add ./bitnami/.ssh/keyFile

并获取

Could not open a connection to your authentication agent

我正在使用Bitnami AMI,Ubuntu OS加入AWS EC2。

我注意到我在评估我的ssh-agent时尝试了几次ssh-agent进程,所以我做了一个

killall ssh-agent

然后再次尝试使用eval,ssh-add进程,仍然出现“无法打开...”错误

1 个答案:

答案 0 :(得分:1)

在〜/ .ssh /创建配置文件并添加

IdentityFile ~/.ssh/keyFile

解决了这个问题。这并没有回答上述问题,但它确实解决了整个问题。

通过尝试使用-v标志ssh进入服务器找到帮助我看到密钥文件没有被读取(显然)。