centos 报错 “Job for iptables.service failed because the control process exited with error code.”的解决办法
Posted chosenone
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 报错 “Job for iptables.service failed because the control process exited with error code.”的解决办法相关的知识,希望对你有一定的参考价值。
原因:因为centos7默认的防火墙是firewalld防火墙,不是使用iptables,因此需要先关闭firewalld服务,或者干脆使用默认的firewalld防火墙。
操作步骤:
关闭防火墙
1.systemctl stop firewalld
2.systemctl mask firewalld
在使用iptables服务
#开放443端口(HTTPS)
3.iptables -A INPUT -p tcp --dport 443 -j ACCEPT
#保存上述规则
4.service iptables save
#开启服务
5.systemctl restart iptables.service
以上是关于centos 报错 “Job for iptables.service failed because the control process exited with error code.”的解决办法的主要内容,如果未能解决你的问题,请参考以下文章