#安装sshd
检查是否安装openssh-server: yum list installed | grep openssh-server
如果没有安装,则安装:yum install openssh-server
找到了 /etc/ssh/ 目录下的sshd服务配置文件 sshd_config,用Vim编辑器打开
将文件中,关于监听端口、监听地址前的 # 号去除
然后开启允许远程登录
systemctl start sshd 或者
开机启动sshd:systemctl enable sshd.service