1.卸载openssh
执行rpm-qaopenssh* 查看是否已经安装过了。
[root@node51 ~]# rpm-qaopenssh*
openssh-server-6.6.1p1-11.el7.x86_64
openssh-6.6.1p1-11.el7.x86_64
openssh-clients-6.6.1p1-11.el7.x86_64
依次卸载:
[root@node51 ~]# yum remove openssh-server-6.6.1p1-11.el7.x86_64
[root@node51 ~]# yum remove openssh-clients-6.6.1p1-11.el7.x86_64
[root@node51 ~]# yum remove openssh-6.6.1p1-11.el7.x86_64、
或者使用:yum remove openssh-* 全部卸载掉
2.安装openssh
yum install -y openssl openssh-server
用vim打开配置文件/etc/ssh/sshd_config
把上图的PermitRootLogin,RSAAuthentication,PubkeyAuthentication的设置打开。
执行 systemctlstart sshd.service 启动服务
设置开机自启动:systemctl enable sshd.service
参考:https://www.cnblogs.com/liuhouhou/p/8975812.html