Redhat Enterprise Linux AS 升级 openssh 5.x
作者: reistlin
来源: http://www.reistlin.com/blog/6
更新时间: 2010.03
版权声明: 原创文章.转载请保留作者信息和原文完整.谢绝任何方式的摘要
适用于 RHEL 4.x / 5.x (Redhat Enterprise Linux AS) 以及 CentOS 4.x / 5.x. 无缝平滑升级 openssh. 可远程操作(不会断开 ssh 连接). 不用修改其他系统配置. 感谢 [BigYong] 指导
1. 下载 [openssh-5.4p1.tar.gz]:
wget http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-5.4p1.tar.gz
2. 解压缩 / 配置 / 编译 / 安装:
编译 --with-ssl-dir 参数选择:
openssl version -a
RHEL 4.x OPENSSLDIR: /usr/share/ssl
RHEL 5.x OPENSSLDIR: /etc/pki/tls
tar zxvf openssh-5.4p1.tar.gz ./configure --prefix=/usr \ --sysconfdir=/etc/ssh \ --with-ssl-dir=/usr/share/ssl \ --with-zlib \ --with-pam \ --with-md5-passwords \ --with-kerberos5 \ # 编译 make # 编译安装 make install
3. 检查 openssh 版本:
ssh -V OpenSSH_5.4p1, OpenSSL 0.9.7a Feb 19 2003
4. 重新启动 sshd 服务:
/etc/init.d/sshd restart