通過VMWare安裝了一個FreeBSD虛擬機,想著說用XShell遠程連接上去,但是總是出現下列錯誤:
[plain]
- error: PAM: authentication error for root
查了一下資料,默認情況下,FreeBSD上的sshd是不允許root通過ssh遠程登錄到服務器上。只需要在/etc/ssh/sshd_config文件中添加下列配置:
[plain]
- PermitRootLogin yes
- PasswordAuthentication yes
- AllowUsers root
試了一下,問題解決。