linux----升级ssh

一.先准备好telnet-server

yum -y install telnet telnet-server xinetd

systemctl enable xinetd 

systemctl enable telnet.socket

systemctl start xinetd

systemctl start telnet.socket

 

二.创建普通用户

useradd test -s /sbin/nologin -M

passwd test

firewall-cmd --add-port=23/tcp --reload

firewall-cmd --reload

用xshell测试是否能成功登陆,如果能,就可以开始升级ssh了。

 

三.升级ssh

./configure  --prefix=/usr/local/ssh && make && make install

启动sshd

/usr/local/ssh/sbin/sshd  (必须用全路径)

 

四:设置环境变量

五:将sshd假如systemctl里面

 

转载于:https://www.cnblogs.com/QicongLiang/p/10510336.html

你可能感兴趣的:(linux----升级ssh)