天新网09年03月24日【转载】作者:天新网[评论]
新安装的OpenSuse10.3,开启ssh后,用Fterm登录ssh,登录失败,Fterm提示”Server does not suppo rt passWord auth”.
解决办法:
ssh默认不支持密码方式验证.
修改/etc/ssh/sshd_config文件,把
PasswordAuthentication no
df 修改为
PasswordAuthentication yes
再重启ssh服务即可:
/etc/init.d/sshd restart
11月22日
『Linux』SUSE 开启SSH服务
1.修改sshd_config文件,命令为:vi /etc/ssh/sshd_config
2.将#PasswordAuthentication no的注释去掉,并且将NO修改为YES
3.将#PasswordAuthentication no的注释去掉,并且将NO修改为YES
4.将#PermitRootLogin yes的注释去掉
5.重新启动SSH服务,命令为:/etc/init.d/sshd restart
6.验证SSH服务状态,命令为:/etc/init.d/sshd status
解决SUSE Linux下SSH无法使用密码登录问题
新安装的OpenSuse10.3,开启ssh后,用Fterm登录ssh,登录失败,Fterm提示”Server doest not support password auth”.
解决办法:
ssh默认不支持密码方式验证.
修改/etc/ssh/sshd_config文件,把
PasswordAuthentication no
修改为
PasswordAuthentication yes
再重启ssh服务即可:
/etc/init.d/sshd restart。