OpenSSH普通用戶無法登錄的幾種情況的解決方法
1 驗證方式不支持
如客戶端登錄時提示如下:
[www.linuxidc.com@CentOS-6-37 ~]$ ssh
[email protected]
Permission denied (publickey,keyboard-interactive).
解決方法:
設置sshd的配置文件(sshd_config)的這條配置:PasswordAuthentication yes
然後重啟服務:service sshd restart
2 普通用戶登錄密碼始終錯誤,sshd啟動有報錯
sshd啟動報錯:
Unsupported option GSSAPIAuthentication
Unsupported option GSSAPICleanupCredentials
解決方法:
注銷sshd的配置文件(sshd_config)的如下配置:
#GSSAPIAuthentication yes
#GSSAPICleanupCredentials yes
#UsePAM yes
然後重啟服務:service sshd restart