Centos7设置关闭防火墙

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

1.关闭防火墙

[[email protected] ~]# systemctl stop firewalld.service

2.禁止防火墙开机自启

[[email protected] ~]# systemctl disable firewalld.service

3.安装iptables service

yum -y install iptables-services

4.修改防火墙配置,如增加防火墙端口3306

vi /etc/sysconfig/iptables 

增加以下规则

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

保存退出后

重启防火墙使配置生效

[[email protected] ~]# systemctl restart iptables.service

设置防火墙开机启动

[[email protected] ~]# systemctl enable iptables.service

重启系统使设置生效

[[email protected] ~]# reboot

注意:mysql安装后,如果不关掉防火墙,则远程不能连接成功。

时间: 2024-11-02 07:32:29

Centos7设置关闭防火墙的相关文章

centos7下关闭防火墙、selinux、挂载光盘和设置ip

使用命令修改ip地址的方法:[[email protected]~]#vi /etc/sysconfig/network-scripts/ifcfg-ens33按i可以添加修改内容ONBOOT="no"改成yes 开启网卡BOOTPROTO="dhcp" 改成none或staticIPADDR=192.168.159.129 NETEWAY=255.255.255.0GATEWAY=192.168. 159.1DNS1=8.8.8.8重启网卡服务[[email pr

centos7以后关闭防火墙

centos 6.5关闭防火墙 # service iptables stop    临时关闭防火墙 # chkconfig iptables off   永久关闭防火墙 centos 7.2 关闭防火墙 从centos7 开始使用systemctl 来管理服务和程序,包括了service  chkconfig 查看防火墙状态 # systemctl list-unit-files | grep firewalld.service 或者 # systemctl status firewalld.

【Linux】CentOS7 打开关闭防火墙及端口

一.centos7版本对防火墙进行加强,不再使用原来的iptables,启用firewalld1.firewalld的基本使用启动: systemctl start firewalld查状态:systemctl status firewalld 停止: systemctl disable firewalld禁用: systemctl stop firewalld在开机时启用一个服务:systemctl enable firewalld.service在开机时禁用一个服务:systemctl di

centos7.0 关闭防火墙

1.关闭firewall:systemctl stop firewalld.service #停止firewallsystemctl disable firewalld.service #禁止firewall开机启动firewall-cmd --state #查看默认防火墙状态(关闭后显示notrunning,开启后显示running) 2.iptables防火墙(这里iptables已经安装,下面进行配置)vi/etc/sysconfig/iptables #编辑防火墙配置文件# sample

CentOS7打开关闭防火墙与端口的基本命令

1.firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用  : systemctl disable firewalld 开机启用  : systemctl enable firewalld 2.systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体. 启动一个服务:

centos7如何关闭防火墙

1.centos7自带了firewall,而不是iptables: 关闭firewall: service firewalld stop 或者: systemctl stop firewalld 禁止firewall: systemctl mask firewalld 下面是替换成iptables操作: yum -y install iptables-services 开机启动: systemctl enable iptables 启动iptables: systemctl start ipta

centos7系列关闭防火墙但是端口依然无法访问

centos7.3系统,已经关闭firewalld,但是除了22端口,其余端口无法被外界访问,本地访问正常,解决步骤:1.先开启firewalld:systemctl start firewalld2.放通端口:firewall-cmd --zone=public --add-port=8080/tcp --permanent3.重新加载配置文件:firewall-cmd --reload此时测试,端口已经能够访问了,如果不需要firewall,可以再关闭,已放通端口不受影响(为什么一开始我不放

CentOS7 关闭防火墙[转]

CentOS6关闭防火墙使用以下命令, /临时关闭 service iptables stop //禁止开机启动 chkconfig iptables off CentOS7中若使用同样的命令会报错, stop iptables.service Failed to stop iptables.service: Unit iptables.service not loaded. 这是因为CentOS7版本后防火墙默认使用firewalld,因此在CentOS7中关闭防火墙使用以下命令, //临时关

Centos6.8下设置gitlab服务开机自启动,关闭防火墙开机自启动

一. 本地虚拟机的缺点 本地虚拟机虽然也可以模拟服务器用,但电脑不能保证24小时都是开机的,一旦关机,服务就失去了连接,你将看到我们之前搭建的gitlab服务出现如下画面: 本地电脑7*24小时不关机是不现实的,但是可以保证,一旦虚拟机启动,服务也响应启动,而不是服务启动了,发现防火墙开机自启了,本地去访问gitlab时被拦截了,当关闭防火墙,又发现gitlab服务不是开机自动启动的,还需要手动敲一遍命令: gitlab-ctl start 这显然是不合理的,下面我们谈谈如何开闭防火墙开机自启动