centos一7啟動iptables時報Job for iptables.service failed because the control process exited with error cod
啟動iptables:
service iptables start報錯如下:
Job for iptables.service failed because the control process exited with error code. See "systemctl status iptables.service" and "journalctl -xe" for details.查看例外資訊:journalctl -xe錯誤如下:
Failed to start IPv4 firewall with iptables.解決辦法
因為centos7默認的防火墻是firewalld防火墻,不是使用iptables,因此需要先關閉firewalld服務,或者干脆使用默認的firewalld防火墻。
因為這次報錯的服務器是一臺剛剛購買的阿里云服務器,所以在操作上忘記關閉默認防火墻的步驟了才導致浪費了些時間在這件事情上。
關閉firewalld:
systemctl stop firewalld
systemctl mask firewalld
使用iptables服務:
#開放443埠(HTTPS)
iptables -A INPUT -p tcp --dport 443 -j ACCEPT
#保存上述規則
service iptables save
#開啟服務
systemctl restart iptables.service
正常啟動!!!!
轉載請註明出處,本文鏈接:https://www.uj5u.com/caozuo/125914.html
標籤:實用資料發布區
上一篇:python
下一篇:USB相機斷點重連機制
