使用SSH Secure File Transfer Client 连接FREEBSD 连不上去呢 提示 error: pam : authentication error for root from的解决方法:
编辑/etc/inetd.conf,去掉ssh前的#,保存退出.
编辑/etc/rc.conf,最后加入:sshd_enable="yes"即可
启动[qi dong]sshd服务:#/etc/rc.d/sshd start
#netstat -an 检查服务是否启动,22端口有无sshd服务监听。
编辑/etc/ssh/sshd_config,在末尾加上如下内容:
PermitRootLogin yes #允许root通过sshd登陆
PermitEmptyPasswords no #不允许空密码[mi ma]
PasswordAuthentication yes
重新启动sshd服务:service sshd onerestart
出处:http://bbs.chinaunix.net/thread-2315086-1-1.html
转载于:https://blog.51cto.com/jizhan/1609456