1.  Linux系统:Red Hat Enterprise Linux Server release 6.5 (Santiago)

临时关闭防火墙命令:

service iptables stop

service ip6tables stop

永久关闭防火墙命令:

chkconfig iptables off

chkconfig ip6tables off

查看防火墙状态命令:

service iptables status

[root@hadoop ~]# cat /etc/redhat-release

Red Hat Enterprise Linux Server release6.5(Santiago)

[root@hadoop~]# service iptables stop

iptables: Setting chains to policy ACCEPT: filter [ OK ]

iptables: Flushing firewall rules: [ OK ]

iptables: Unloading modules: [ OK ]

[root@hadoop~]# service ip6tables stop

ip6tables: Setting chains to policy ACCEPT: filter [ OK ]

ip6tables: Flushing firewall rules: [ OK ]

ip6tables: Unloading modules: [ OK ]

[root@hadoop~]# service iptables status

iptables: Firewallisnot running.

[root@hadoop~]# service ip6tables status

ip6tables: Firewallisnot running.

[root@hadoop~]# chkconfig iptables off

[root@hadoop~]# chkconfig ip6tables off

2.  linux系统:CentOS Linux release 7.5.1804 (Core)

前面说的几个命令,我在centos 7上用着都失效了。网上说,centos从7开始默认用的是firewalld,这个是基于iptables的,虽然有iptables的核心,但是iptables的服务是没安装的。所以你只要停止firewalld服务即可

[root@hadoop ~]# sudo systemctl stop firewalld.service &&sudo systemctl disable firewalld.service

Removed symlink/etc/systemd/system/multi-user.target.wants/firewalld.service.

Removed symlink/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.

如果你要改用iptables的话,需要安装iptables服务,并对命令做一些修改

[root@hadoop ~]# service iptables stop #命令失效

Redirecting to/bin/systemctl stop iptables.service

Failed to stop iptables.service: Unit iptables.service not loaded.

[root@hadoop~]# yum install iptables-services

[root@hadoop~]# /bin/systemctl stop iptables.service

[root@hadoop~]# /bin/systemctl stop ip6tables.service

永久关闭防火墙

[root@hadoop ~]# chkconfig iptables off #命令失效

Note: Forwarding request to'systemctl disable iptables.service'.

[root@hadoop~]# systemctl disable iptables.service

[root@hadoop~]# systemctl disable ip6tables.service

查看防火墙是否关闭

[root@hadoop ~]# firewall-cmd --state

not running

总结:centos 7系统关闭防火墙有2种方式:

方式1:

关闭防火墙:systemctl stop firewalld.service

永久关闭防火墙:systemctl disable firewalld.service

方式2:

首先安装iptables服务:yum install iptables-services

关闭防火墙:/bin/systemctl stop iptables.service && /bin/systemctl stop ip6tables.service

永久关闭防火墙:systemctl disable iptables.service && systemctl disable ip6tables.service

查看防火墙是否关闭:firewall-cmd --state

linux正确关闭防火墙命令,linux关闭防火墙命令相关推荐

  1. mysql linux 关闭防火墙_linux常用命令和关闭防火墙

    2.        linux常用命令 Mkdir 创建 Rm -rf 删除 Chmod -R 777 权限 Mysql -uroot -r quit退出 find / -name svn 查找位置 ...

  2. Linux关闭防火墙命令(永久性关闭)

    抛开实际生产环境 个人平时练习的时候安装虚拟机可能遇到过很多坑就很烦,可能很大一部分原因都是防火墙没关掉哈哈哈哈所以建议永久性关闭防火墙 下面是CentOs7关闭防火墙的命令! 1:查看防火状态 sy ...

  3. linux ubuntu 关闭防火墙命令,LINUX关闭防火墙的方法

    LINUX关闭防火墙的方法 导语:LINUX关闭防火墙的方法,你懂吗?下面的是百分网小编为大家搜集的LINUX关闭防火墙的方法,欢迎阅读,谢谢! (1) 重启后永久性生效: 开启:chkconfig ...

  4. linux6 防火墙状态,linux 6 查看防火墙状态及开启关闭命令

    linux 6查看防火墙状态及开启关闭命令 存在以下两种方式: 一.service方式 查看防火墙状态: [root@centos6 ~]# service iptables status iptab ...

  5. linux ubuntu 关闭防火墙命令,Linux下开启/关闭防火墙命令

    iptables用于过滤数据包,属于网络层防火墙. firewall能够允许哪些服务可用,那些端口可用.... 属于更高一层的防火墙. firewall的底层是使用iptables进行数据过滤,建立在 ...

  6. CentOS Linux防火墙配置及关闭

    最近在CentOS Linux下安装配置 ORACLE 数据库的时候,总显示因为网络端口而导致的EM安装失败,遂打算先关闭一下防火墙. 偶然看到防火墙的配置操作说明,感觉不错.执行"setu ...

  7. linux设置mysql防火墙端口映射_Linux防火墙默认是关闭3306端口,iptables实现端口转发、端口映射及双向通路...

    iptables实现端口转发.端口映射及双向通路其实不难配置,看下文: 允许数据包转发: #echo 1 > /proc/sys/net/ipv4/ip_forward 转发TCP 8081到x ...

  8. LINUX防火墙打开与关闭

    原文地址: http://my.oschina.net/u/217959/blog/38051 (1) 重启后永久性生效: 开启:chkconfig iptables on 关闭:chkconfig ...

  9. centos关闭php服务,linux(centos)防火墙的开启与关闭的方法

    本篇文章记录一下在linux(centos)系统下的防火墙的开启,关闭的方法.具体有两种方法: 一.执行"setup"命令启动文字模式配置实用程序,在"选择一种工具&qu ...

  10. linux禁用防火墙配置,CentOS Linux防火墙配置及关闭

    最近在CentOS Linux下安装配置 Oracle 数据库的时候,总显示因为网络端口而导致的EM安装失败,遂打算先关闭一下防火墙. 偶然看到防火墙的配置操作说明,感觉不错.执行"setu ...

最新文章

  1. javascript --- 事件托付
  2. 区块链相关论文研读4: Monoxide异步共识组
  3. python flask 表单数据输出_将数据从HTML表单发送到Flask中的Python脚本
  4. URI,URL和URN有什么区别?
  5. ATTCK矩阵 linux系统安全实践
  6. 百度贴吧——因百度账号策略调整导致长时间未登录的账号(最后登录在2017年6月1日以前)网页端无法登陆、移动端异常解决方案
  7. 1029 旧键盘 (20 分)(c语言)
  8. 浅谈分布式消息技术 Kafka
  9. jQuery使用示例详解
  10. 朱啸虎:自己来说可以把一小部分资产购买比特币,作为资产配置是可以考虑的
  11. 一步一步学习ObjectDataSource--(3)
  12. VNPY2.0火币期货交易接口配置使用
  13. 有关mysql的清理与优化_mysql优化点整理
  14. window计算机截屏快捷键,电脑截图是ctrl加什么键win7快捷键截图方法详解
  15. 科幻文学入门指南(专业读者分享)
  16. 加边的无向图(并查集)
  17. 520,冰河亲自整理的Git命令汇总升级版,悄悄努力,然后惊艳所有人(升级版)
  18. 被尤雨溪diss的Native CSS Modules是什么
  19. 视频播放不了?如何修复视频文件?
  20. 命令消费kafka报错(id: -1 rack: null) disconnected

热门文章

  1. noip2005篝火晚会
  2. I/O 模块 M208x 适用于钡铼技术分布式耦合器
  3. 爱“搬家”的欧宗洪 抱薪救火的融信中国
  4. 网络知识host(Host的含义和作用)
  5. javascript隐藏和显示元素
  6. JAVA找门的第三天(Git配置,Editplus运行java程序)~~~
  7. 5G双翼掀起的半导体飓风
  8. 西安尚学堂练习9.5|Java编程笔试面试题
  9. MySQL索引B+Tree
  10. 关于java.lang.NumberFormatException: For input string:${redis.maxIdle}的报错