1,服务器链接不上
ssh: connect to host XXXXX port 22: Connection refused
原因,centos7 修改了链接的端口变成 2200了。
#Port 22
Port 2200
修改回去,或使用2200链接。
修改:vi /etc/ssh/sshd_config
2,centos7默认安装了防火墙不是iptables了
因为是本地测试,所以直接关闭防火墙,禁用开机启动。
systemctl stop firewalld
systemctl disable firewalld
3,关闭selinux
vi /etc/selinux/config
修改以下内容
#SELINUX=enforcing #注释掉
#SELINUXTYPE=targeted #注释掉
SELINUX=disabled #增加
时间: 2024-10-01 05:26:34