1.卸载openssh
执行 rpm -qa openssh*查看是否已经安装过了。
rpm -qa openssh*
依次卸载:
yum remove openssh-server-7.4p1-23.el7_9.x86_64
yum remove openssh-7.4p1-23.el7_9.x86_64
或者使用:yum remove openssh-* 全部卸载掉
yum remove openssh*
2.安装openssh
执行yum install -y openssl openssh-server 进行安装。
yum install -y openssl openssh-server
openssl 客户端
openssh-server 服务端
用vim打开配置文件/etc/ssh/sshd_config
vim /etc/ssh/sshd_config
把上图的PermitRootLogin,PubkeyAuthentication的设置打开。
执行 systemctl restart sshd 启动服务
systemctl start sshd
查看ssh服务运行状态…
systemctl status sshd
停止ssh服务
systemctl stop sshd.service
重启ssh服务
systemctl restart sshd.service
设置开机自启动:systemctl enable sshd
systemctl enable sshd