解决Agent admitted failure to sign using the kye with ssh

之前如果建立 ssh 连接,只要�⒐�匙复制到~/.ssh/authorized_keys就可以直接登录而不需要建立密�a.

如果在使用时候出现如下信息:

Agent admitted failure to sign using the key

解�Q方式:

验证产生的key时候已经加入到ssh中,使用ssh-add �Cl进行查看


如果没有打印出如上信息,你必须将私匙添加到ssh中,通过ssh-add path/to/key

#ssh-add   ~/.ssh/id_rsa

例如:ssh-add  ~/.ssh/[email protected]  

 Note:

在大多数系统中,都回默认将 ~/.ssh/id_rsa,~/.ssh/id_dsa, ~/.ssh/identity自动添加到ssh中。如果你重新生成了新的key,那么你必须使用使用 ssh-addpath/to/key手动添加。

你可能感兴趣的:(操作系统,网络技术)