root登录后输入
yum -y update
检查更新后 安装openssh-server
yum install -y openssl openssh-server
修改配置文件
vi /etc/ssh/sshd_config
把 #Port 22 前面的 #去掉,打开22端口
然后一起贴入下面三行命令:
sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
sed -i 's/PermitRootLogin no/PermitRootLogin yes/g' /etc/ssh/sshd_config
reboot
至此开启远程ssh服务完成