关闭SELinux和iptables防火墙

时间:2022-08-27 23:46:43

1、关闭SELinux:

编辑SELinux配置文件:    

[root@Redis selinux]# vim /etc/selinux/config

修改SELINUX配置项为disable

SELINUX=disabled

 

2、关闭iptables防火墙:

清除iptables的配置文件条目: 

[root@Redis selinux]# iptables -F
[root@Redis selinux]# iptables -X
[root@Redis selinux]# iptables -Z

查看iptables配置文件条目  

[root@Redis selinux]# iptables -L

停止iptables服务:

[root@track local]# service iptables stop

关闭iptables启动项:

[root@17track local]# chkconfig iptables off

 

[THE END]