CentOS下的防火墙关闭

  

关闭防火墙

  1、查看防火墙状态

      service iptables status

  2、关闭,但开机后又会打开

      service iptables stop

  3、查看防火墙开机启动状态

      chkconfig iptables --list

  4、永久关闭

      chkconfig iptables off

  

   想说的是,因为防火墙是一个服务,那么服务,可能会随开机自动启开。所以,一般永久关闭。

==================================》   这也是为什么在搭建如hadoop、spark集群,要关闭防火墙,而且最好是永久关闭呢?

   因为,防火墙是保护进程间通信的,而它们是需要进程间通信。

上一篇:J2EE应用监控后台执行SQL


下一篇:SpringMVC源码解读 - HandlerMapping - AbstractDetectingUrlHandlerMapping系列初始化