您现在的位置是:首页 >技术交流 >Centos7 怎么关闭防火墙网站首页技术交流
Centos7 怎么关闭防火墙
简介Centos7 怎么关闭防火墙
Centos7 怎么关闭防火墙
CentOS7中若使用CentOS6的关闭防火墙命令会报错
stop iptables.service
Failed to stop iptables.service: Unit iptables.service not loaded.
CentOS7关闭防火墙的步骤如下
- 命令行界面输入
systemctl status firewalld.service
- 可以查看得到
active(running)
,表示防火墙已经被打开了。 - 然后输入
systemctl stop firewalld.service
命令,临时关闭防火墙。 - 在输入命令
systemctl status firewalld.service
,下方出现disavtive(dead)
,说明防火墙已经关闭。 - 输入命令
systemctl disable firewalld.service
就可以永久关闭防火墙。
如果安装了iptables-service,也可以使用下面的命令
yum install -y iptables-services
//关闭防火墙
service iptables stop
Redirecting to /bin/systemctl stop iptables.service
//检查防火墙状态
service iptables status
Redirecting to /bin/systemctl status iptables.service
鈼iptables.service - IPv4 firewall with iptables
Loaded: loaded (/usr/lib/systemd/system/iptables.service; disabled; vendor preset: disabled)
Active: inactive (dead)
注:CentOS6关闭防火墙的命令如下
//临时关闭
service iptables stop
//禁止开机启动
chkconfig iptables off
今天的分享就到此结束了
欢迎点赞评论互关三连
风语者!平时喜欢研究各种技术,目前在从事后端开发工作,热爱生活、热爱工作。