不能成功配置ssh信任,提示Agent admitted failure to sign using the key.

不能成功配置ssh信任,提示Agent admitted failure to sign using the key.


问题现象:
    做完信任之后要需要输密码:
  1. [grid@db01 .ssh]$ ssh db02
  2. Agent admitted failure to sign using the key.
  3. grid@db02

原因:
    GNOME 用户会在尝试通过 SSH 连接到 GCE 时偶尔会看到 "Agent admitted failure to sign using the key" 信息。这是由尝试使用错误 SSH 密钥的 GNOME 密钥环管理造成,

解决办法:
  1. 启用ssh-agent:
  2. [grid@db02 ~]$ eval `ssh-agent`
  3. Agent pid 6078
  4.     使用 ssh-add 指令将私钥 加进来 (根据个人的密匙命名不同更改 id_rsa)
  5. [grid@db02 ~]$ ssh-add ~/.ssh/id_rsa
  6. Identity added: /home/grid/.ssh/id_rsa (/home/grid/.ssh/id_rsa)

总结:
   让ssh-agent能转发,这样就可以这样登陆了。


请使用浏览器的分享功能分享到微信等