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

centos7启动iptables时报Job for iptables.service failed because the control process exited with error cod

时间:2018-08-28 14:14:24      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:bsp   details   span   解决   tables   service   时间   开启   异常   

centos7启动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
正常启动!!!!

 

centos7启动iptables时报Job for iptables.service failed because the control process exited with error cod

标签:bsp   details   span   解决   tables   service   时间   开启   异常   

原文地址:https://www.cnblogs.com/zengpeng/p/9547468.html

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