zoukankan      html  css  js  c++  java
  • 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:

    1.  
      systemctl stop firewalld
    2.  
      systemctl mask firewalld

    使用iptables服务:

    1.  
      #开放443端口(HTTPS)
    2.  
      iptables -A INPUT -p tcp --dport 443 -j ACCEPT
    3.  
       
    4.  
      #保存上述规则
    5.  
      service iptables save
    6.  
       
    7.  
      #开启服务
    8.  
      systemctl restart iptables.service

    正常启动!!!!

    转载于:https://blog.csdn.net/sinat_29821865/article/details/80982250

  • 相关阅读:
    C语言I博客作业05
    C语言I博客作业04
    C语言II博客作业04
    C语言II博客作业03
    C语言II—作业02
    C语言II博客作业01
    学期总结
    C语言I博客作业08
    C语言I博客作业07
    C语言I博客作业06
  • 原文地址:https://www.cnblogs.com/Hello-TomCat/p/14430272.html
Copyright © 2011-2022 走看看