1. 程式人生 > >Linux密鑰認證錯誤解決

Linux密鑰認證錯誤解決

clas des author logs shell orm 遠程 kit 錯誤

問題描述:

  Xshell用key認證登錄,提示所選的用戶密鑰未在遠程主機上註冊

問題解決:

  查看日誌/var/log/secure,基本上都是用戶根目錄的權限問題

根據日誌提示:

Authentication refused: bad ownership or modes for directory /root

說明root權限有問題:

chmod g-w /home/your_user
chmod 700 /home/your_user/.ssh
chmod 600 /home/your_user/.ssh/authorized_keys

借鑒:

https://www.daveperrett.com/articles/2010/09/14/ssh-authentication-refused/

Linux密鑰認證錯誤解決