ssh無法登入——許可權問題如何解決

偉小咖發表於2018-02-28

ssh無法登入——許可權問題

/etc/ssh/sshd_config中有一個選項StrictModes,如果該選項是yes,那麼如果某些檔案或者資料夾的許可權不對則無法ssh登入,具體許可權如下

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/

相關文章