在 client 端生成公鑰和密鑰
在 client 端命令行下執行
ssh-keygen -t rsa -P ''
然後敲回車既可生成公鑰和密鑰
將 client 端的公鑰添加到用於認證的 Server 端的公鑰文件中
步驟如下:
1、將 client 端公鑰復制到 Server 端
scp scp ~/.ssh/id_rsa.pub
[email protected]:~/.ssh/
2、將公鑰內容復制到新建的 authorized_keys 文件中(這條命令是在 Server 端運行的)
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
現在用 client 端連接 Server 端即可無密碼登陸了。
本文參考:
http://jingyan.baidu.com/article/60ccbceb02bd4264cab197b9.html
補充:
當 ssh 生成 id_rsa id_rsa.pub後,連接服務器卻報
Agent admitted failure to sign using the key
這個錯誤
在當前用戶下執行命令
ssh-add