SSH服务器拒绝了密码

1安装
yum -y install openssh openssh-clients openssh-server openssh-askpass
2修改 vim /etc/ssh/sshd_config

PermitRootLogin yes
StrictModes yes
UsePAM yes
1.
2.
3.
3重启ssh
systemctl restart sshd

SSH服务器拒绝了密码_第1张图片
SSH服务器拒绝了密码_第2张图片

按照网上的说法是不允许root用户登陆

但是,/etc/ssh/sshd_config 已经写入PermitRootLogin yes

解决方法:

设置/etc/sysconfig/selinux 中的SELINUX=disabled

然后重启就OK了

重启ssh #sudo /etc/init.d/ssh restart

重启机器reboot

重启完开启ssh

#sudo /etc/init.d/ssh start

然后连接xshell就OK了。

你可能感兴趣的:(liunx,ssh,服务器,linux)