CentOS 6.6升级OpenSSH到最新版本7.5.p1(2)

 

yum install gcc openssl-devel zlib-devel tar zxvf openssh-7.5p1.tar.gz cd openssh-7.5p1 ./configure make && make install 拷贝ssh服务文件

 

cp ./contrib/redhat/sshd.init /etc/init.d/sshd chmod +x /etc/init.d/sshd 修改SSHD服务文件

 

vim /etc/init.d/sshd 修改以下内容 SSHD=/usr/sbin/sshd 为 SSHD=/usr/local/sbin/sshd /usr/sbin/ssh-keygen -A 为 /usr/local/bin/ssh-keygen -A 保存退出 加入系统服务

 

chkconfig --add sshd 查看系统启动服务是否增加改项

 

chkconfig --list |grep sshd sshd 0:off 1:off 2:on 3:on 4:on 5:on 6:off 允许root用户远程登录

 

cp sshd_config /etc/ssh/sshd_config vim /etc/ssh/sshd_config 修改 PermitRootLogin yes,并去掉注释 配置允许root用户远程登录

这一操作很重要!很重要!很重要!重要的事情说三遍,因为openssh安装好默认是不执行sshd_config文件的,所以即使在sshd_config中配置允许root用户远程登录,但是不加上这句命令,还是不会生效!

 

vim /etc/init.d/sshd 在 ‘$SSHD $OPTIONS && success || failure’这一行上面加上一行 ‘OPTIONS="-f /etc/ssh/sshd_config"’ 保存退出 重启  service sshd start

更多OpenSSH相关内容可以查看以下的有用链接: 

Ubuntu Server 13.10系统中安装配置OpenSSH

Ubuntu安装远程登录OpenSSH服务

CentOS 6下OpenSSH 5.3升级至7步骤记录

OpenSSH普通用户无法登录的几种情况的解决方法

通用线程: OpenSSH 密钥管理,第 1 部分理解 RSA/DSA 认证

Linux下升级 OpenSSH 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/13939.html