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

简介: 不能成功配置ssh信任,提示Agent admitted failure to sign using the key. 问题现象:      做完信任之后要需要输密码: [grid@db01 .

不能成功配置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能转发,这样就可以这样登陆了:


目录
相关文章
|
4月前
|
监控 安全 Ubuntu
在Linux中,如何进行SSH服务配置?
在Linux中,如何进行SSH服务配置?
|
4月前
|
安全 网络协议 Shell
Github代码仓库SSH配置流程
这篇文章是关于如何配置SSH以安全地连接到GitHub代码仓库的详细指南,包括使用一键脚本简化配置过程、生成SSH密钥对、添加密钥到SSH代理、将公钥添加到GitHub账户以及测试SSH连接的步骤。
91 0
Github代码仓库SSH配置流程
|
4月前
|
网络安全 开发工具 git
拉取 gitee 代码,配置SSH,Please make sure you have the correct access rights
拉取 gitee 代码,配置SSH,Please make sure you have the correct access rights
75 1
|
4月前
|
网络安全 Windows
在Windows电脑上启动并配置SSH服务
在Windows电脑上启动并配置SSH服务
954 0
|
4月前
|
Ubuntu Shell 网络安全
【Ubuntu】配置SSH
【Ubuntu】配置SSH
111 0
|
4月前
|
安全 Linux 网络安全
在Linux中,如何配置SSH以确保远程连接的安全?
在Linux中,如何配置SSH以确保远程连接的安全?
|
4月前
|
安全 Linux Shell
如何在 Linux 服务器上配置基于 SSH 密钥的身份验证
如何在 Linux 服务器上配置基于 SSH 密钥的身份验证
293 0
|
网络安全
|
网络安全
配置多台机器SSH相互通信信任
1.5台机器执行 ssh-keygen [root@sht-sgmhadoopnn-01 ~]# ssh-keygen Generating public/private rsa key pair.
1649 0