参考自:http://www.linuxidc.com/Linux/2016-12/138979.htm
一、与zookeeper服务端建立连接失败
在虚拟机系统centos7上部署zookeeper3.4.11,在物理机上建立连接,总是连接失败,最后检查发现防火墙忘关了,关闭防火墙正常运行。
1.centos7检查防火墙状态:firewall-cmd --state
2.关闭防火墙:systemctl stop firewalld.service
3.禁止防火墙开机启动:systemctl disable stop firewalld.service
4.开启某端口:firewall-cmd --zone=public --add-port=80/tcp --permanent
5.关闭/开始iptables(即时生效,重启失效):service iptables start/stop
6.关闭/开启iptables(永久生效,重启不失效):chkconfig iptables on/off