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

wuweilong發表於2017-10-08
不能成功配置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能轉發,這樣就可以這樣登陸了。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20674423/viewspace-2145744/,如需轉載,請註明出處,否則將追究法律責任。

相關文章