1,服务器链接不上
1
|
ssh : connect to host XXXXX port 22: Connection refused
|
原因,centos7 修改了链接的端口变成 2200了。
1
2
|
#Port 22
Port 2200
|
修改回去,或使用2200链接。
修改:vi /etc/ssh/sshd_config
2,centos7默认安装了防火墙不是iptables了
因为是本地测试,所以直接关闭防火墙,禁用开机启动。
1
2
|
systemctl stop firewalld
systemctl disable firewalld
|
3,关闭selinux
vi /etc/selinux/config
修改以下内容
1
2
3
4
5
|
#SELINUX=enforcing #注释掉
#SELINUXTYPE=targeted #注释掉
SELINUX=disabled #增加
|
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://blog.csdn.net/freewebsys/article/details/41648909