您的位置:首页 > 大数据 > 人工智能

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

2017-10-08 18:58 621 查看
不能成功配置ssh信任,提示Agent admitted failure to sign using the key.

问题现象:

     做完信任之后要需要输密码:

[grid@db01 .ssh]$ ssh db02
Agent admitted failure to sign using the key.
grid@db02's password:

原因:

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

解决办法:
启用ssh-agent:
[grid@db02 ~]$ eval `ssh-agent`
Agent pid 6078
使用 ssh-add 指令将私钥 加进来 (根据个人的密匙命名不同更改 id_rsa)
[grid@db02 ~]$ ssh-add ~/.ssh/id_rsa
Identity added: /home/grid/.ssh/id_rsa (/home/grid/.ssh/id_rsa)
总结:
让ssh-agent能转发,这样就可以这样登陆了:
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: