解决centos7+ssh连接失败

修改配置文件 vim /etc/ssh/sshd_config
允许用root用户登录 PermitRootLogin yes
允许密码登录 PasswordAuthentication yes
重启SSH服务 systemctl restart sshd

关闭防火墙
systemctl stop firewalld
禁止开机启动
systemctl disable firewalld

修改配置文件 vim /etc/selinux/config
disabled参数 SELINUX=disabled
执行 setenforce 0 命令

ok

你可能感兴趣的:(解决centos7+ssh连接失败)