无法打开与身份验证代理的连接
我遇到了这样的错误:
$ git push heroku master
Warning: Permanently added the RSA host key for IP address '50.19.85.132' to the list of known hosts.
! Your key with fingerprint b7:fd:15:25:02:8e:5f:06:4f:1c:af:f3:f0:c3:c2:65 is not authorized to access bitstarter.
我试图添加密钥,我在下面得到这个错误:
$ ssh-add ~/.ssh/id_rsa.pub
Could not open a connection to your authentication agent.
你开始ssh-agent
吗?
在运行ssh-add
命令之前,您可能需要启动ssh-agent
:
eval `ssh-agent -s`
ssh-add
请注意,这将启动Windows上的msysgit Bash代理。 如果您使用的是不同的shell或操作系统,则可能需要使用命令的变体,例如其他答案中列出的变体。
请参阅以下答案:
要自动启动ssh-agent并允许单个实例在多个控制台窗口中工作,请参阅登录时启动ssh-agent。
为什么我们需要使用eval
而不是ssh-agent
?
要找出原因,请参阅罗宾格林的答案。
公共vs私钥
另外,无论何时使用ssh-add
,我都会向其添加私钥。 文件~/.ssh/id_rsa.pub
看起来像一个公钥,我不确定这是否会起作用。 你有~/.ssh/id_rsa
文件吗? 如果你在文本编辑器中打开它,它是否说它是一个私钥?
我尝试了其他解决方案无济于事。 我做了更多的研究,发现下面的命令起作用了。 我正在使用Windows 7和Git Bash。
eval $(ssh-agent)
更多信息请访问:https://coderwall.com/p/rdi_wq
以下命令为我工作。 我正在使用CentOS。
exec ssh-agent bash
链接地址: http://www.djcxy.com/p/27061.html
上一篇: Could not open a connection to your authentication agent