当前位置: 首页 > 知识库问答 >
问题:

“无法打开到您的身份验证代理的连接”,ssh-add错误,即使在ssh-agent启动后也是如此

邰昀
2023-03-14

我需要添加多个ssh键,因此需要执行ssh-add

我读过很多帖子,比如不能打开到身份验证代理的连接和https://superuser.com/questions/901568/ssh-agent-canl-not-open-connection

我通过以下方式启动了ssh-agent

eval ($ssh-agent -s)

输出如下:代理pid 13524

但仍会得到此错误:

 $ ssh-add ~/.ssh/id_rsa
 Could not open a connection to your authentication agent.

我还设置了

git config --global url."https://".insteadOf git://

我回声一些变量,得到如下:

echo $SSH_AGENT_PID
12340 
echo $SSH_AUTH_SOCK 
/tmp/ssh-ZbRZr10908/agent.10908

共有1个答案

祁修平
2023-03-14

我在网上尝试了很多解决方案,但都没有效果。我做了更多的研究,发现以下命令起作用了。

  1. sudo ssh-agent bash
  2. ssh-add/home/user/.ssh/id_rsa
 类似资料: