最近搭建集群zookeeper集群時,發現日誌報錯,說是找不到主機路由,感覺是防火牆沒關
檢視防火牆狀態:
firewall-cmd --state
開啟就是running,未開啟就是notrunning,當然要關掉了
執行關閉防火牆指令
systemctl stop firewall.service
報錯:
用指令:
sudo systemctl stop firewalld.service && sudo systemctl disable firewalld.service
再看防火牆已經關閉了。
如果你要改用iptables的話,需要安裝iptables服務:
sudo yum install iptables-services
sudo systemctl enable iptables && sudo systemctl enable ip6tables
sudo systemctl start iptables && sudo systemctl start ip6tables
試一試 安裝iptables 行不行,還沒試
yum install iptables-services
CentOS下關閉防火牆
centos 7.0預設使用的是firewall作為防火牆 1 檢視防火牆的狀態 命令 firewall cmd state 關閉後顯示notrunning,開啟後顯示running 2 從centos7開始使用systemctl來管理服務和程式,包括了service和chkconfig,我們可以通...
Centos7 關閉防火牆
centos7 關閉防火牆 centos 7.0預設使用的是firewall作為防火牆,使用iptables必須重新設定一下 1 直接關閉防火牆 systemctl stop firewalld.service 停止firewall systemctl disable firewalld.servi...
Centos7 關閉防火牆
1 直接關閉防火牆 systemctl stop firewalld.service 停止firewall systemctl disable firewalld.service 禁止firewall開機啟動 2 設定 iptables service yum y install iptables ...