1、zookeeper的3個埠說明:
(1)2181:對client端提供服務;
(2)3888
:選舉leader
使用;(
3)2888:集群內機器通訊使用(
leader監聽此埠);
2、centos7無法啟動防火牆的問題:
systemctl stop firewalld.service
systemctl start firewalld.service
檢視防火牆狀態的命令:
firewall-cmd --state
3、在centos7上部署的python專案,不要輕易啟動防火牆,有可能外網無法訪問;如果要開啟防火牆,
則開放指定埠訪問:c;
然後firewall-cmd --reload
Centos7防火牆及埠設定
1 查詢防火牆開放的埠 firewall cmd zone public list ports 2 防火牆開放埠 firewall cmd zone public add port 5672 tcp permanent 開放5672埠 firewall cmd zone public remove ...
centos7防火牆及埠操作
1 檢視防火牆狀態 systemctl status firewalld 2 開啟防火牆 systemctl start firewalld 3 關閉防火牆 systemctl stop firewalld 4 檢視當前firewall狀態 firewall cmd state 5 重啟firewa...
CentOS 7 開放防火牆埠
centos 7 開放防火牆埠 命令 最近公司新的server要求用centos7,發現以前centos 6 系列中的 iptables 相關命令不能用了,查了下,發現centos 7使用firewalld代替了原來的iptables。使用方法如下 關閉防火牆 systemctl stop fire...