码迷,mamicode.com
首页 > 其他好文 > 详细

centos 报错 “Job for iptables.service failed because the control process exited with error code.”的解决办法

时间:2018-08-08 15:01:16      阅读:565      评论:0      收藏:0      [点我收藏+]

标签:process   put   erro   system   save   exit   iptables   rest   color   

原因:因为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.”的解决办法

标签:process   put   erro   system   save   exit   iptables   rest   color   

原文地址:https://www.cnblogs.com/chosenone/p/9442371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!