1. 程式人生 > 其它 >linux sshd服務出了問題 ssh祕鑰檔案 終端無法登陸

linux sshd服務出了問題 ssh祕鑰檔案 終端無法登陸

技術標籤:問題解決linux

問題描述

檢視一下sshd 後臺日誌

cat  /var/log/secure | grep sshd

aliCentos7 sshd[23981]: Authentication refused: bad ownership or modes for directory /root

查看了一下我之前目錄下面的許可權,確實是有問題的
、root許可權

許可權訪問出了問題,查找了很多部落格,下面這組命令解決了問題

chmod 700 /root
chmod 700 /root/.ssh 
chmod 644 /root/.ssh/authorized_keys

之後
/root