歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> 關於Linux

Asianux的SSH登錄問題,密碼不正確解決

Asianux的SSH登錄問題,密碼不正確解決   今天安裝了傳說中,中日韓三國研究的linux  Asianux   安裝好後遇到了問題,ssh登錄不上去,ssh服務是安裝的了,這在別的系統上從未遇到過,比較詫異 經過一番檢查   第一、ssh服務默認是關閉的,需要手動打開 [root@Asianux ~]# service sshd start      啟動 [root@Asianux ~]#chkconfig sshd --level 35 on        啟動3,5模式下默認開啟 第二、ssh登錄時,使用root賬戶死活登錄不進去,提示密碼錯誤(密碼明明是正確的) [root@Asianux ~]# vi /etc/ssh/sshd_config  其中有個參數PermitRootLogin  no    這裡為no,root就登錄不上來了, 改為yes,保存 [root@Asianux ~]# service sshd restart   OK。問題解決。  
Copyright © Linux教程網 All Rights Reserved