1.CentOS7安装 openssh-server,在终端中输入以下内容:
yum install openssh-server
2.编辑sshd的配置文件
vim /etc/ssh/sshd_config
3.修改以下内容, 前面有#号的去掉, 内容不一样的改成以下内容
Port 22
ListenAddress 0.0.0.0
ListenAddress ::
PermitRootLogin yes
PasswordAuthentication yes
4.重启服务
systemctl restart sshd