升级前的准备工作:
开启服务器的telnet 因为在升级过程中可能导致ssh无法使用。
下载升级软件:
Tags · openssh/openssh-portable · GitHub
1、安装依赖
yum install -y autoconf automake libtool zlib-devel openssl-devel
2、安装
unzip openssh-portable-V_9_0_P1.zip
cd openssh-portable-V_9_0_P1
autoreconf
./configure
make
# make tests
make install
3、然后reboot重启机器
4、查看版本
ssh -V
OpenSSH_9.0p1, OpenSSL 1.1.1k FIPS 25 Mar 2021
sshd -V
unknown option -- V
OpenSSH_9.0p1, OpenSSL 1.1.1k FIPS 25 Mar 2021
usage: sshd [-46DdeiqTt] [-C connection_spec] [-c host_cert_file]
[-E log_file] [-f config_file] [-g login_grace_time]
[-h host_key_file] [-o option] [-p port] [-u len]
原文链接:https://blog.csdn.net/qq_38781075/article/details/112182609
网友评论