美文网首页
Centos7 关闭防火墙

Centos7 关闭防火墙

作者: 不_一 | 来源:发表于2018-03-05 21:36 被阅读0次

CentOS 7.0默认使用的是firewall作为防火墙,使用iptables必须重新设置一下

1、直接关闭防火墙

systemctl stop firewalld.service #停止firewall

systemctl disable firewalld.service #禁止firewall开机启动

2、设置 iptables service

yum -y install iptables-services

如果要修改防火墙配置,如增加防火墙端口3306

vi /etc/sysconfig/iptables

增加规则

-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

保存退出后

systemctl restart iptables.service #重启防火墙使配置生效

systemctl enable iptables.service #设置防火墙开机启动

最后重启系统使设置生效即可。

相关文章

  • linux命令

    centos7启动防火墙 centos7停止防火墙/关闭防火墙 centos7重启防火墙 注意:新增/删除操作需要...

  • Linux使用-FAQ

    CentOS7 关闭防火墙 参考:CentOS7 关闭防火墙 在我的虚拟机下启动服务 进程管理 文件管理 查看日志...

  • ELK快速搭建教程

    一、 Elasticsearch安装 环境准备系统: Centos7防火墙: 关闭Sellinux: 关闭JDK ...

  • linux常用操作命令

    centos7一下的系统防火墙设置: 关闭命令:service iptables stop 永久关闭防火墙:chk...

  • Linux常用操作

    centos7关闭防火墙: systemctl stop firewalld.service systemctl ...

  • CentOS开启MySQL远程客户端访问,解决10038报错

    1、关闭Linux防火墙、SELinux 防火墙配置参照:CentOS7 修改防火墙配置SELinux配置参照:C...

  • Centos7防火墙

    Centos7 firewall 命令: 查看已经开放的端口 开启端口 重启防火墙 关闭防火墙 iptables ...

  • CentOS7 防火墙配置

    CentOS7防火墙配置 查看防火墙的服务状态 查看防火墙的状态 开启、重启、关闭、firewalld.servi...

  • HADOOP从入门到入坟

    centos6关闭防火墙 centos7关闭防火墙 配置主机映射,改变各从节点主机名 配置slaves :/had...

  • Linux关闭防火墙命令

    问题:老是关闭防火墙太麻烦,所以选择彻底关闭防火墙,发现每次都记不住命令! 下面是red hat/CentOs7关...

网友评论

      本文标题:Centos7 关闭防火墙

      本文链接:https://www.haomeiwen.com/subject/tudkfftx.html