不能成功配置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能转发,这样就可以这样登陆了:
时间: 2024-11-05 16:41:53