centos7 关闭防火墙和selinux

关闭防火墙:

systemctl stop firewalld               #临时关闭
systemctl disable firewalld            #永久关闭,即设置开机的时候不自动启动
关闭 selinux:
[root@localhost html]# getenforce  
Permissive
[root@localhost html]# setenforce 0  
[root@localhost html]# vim /etc/sysconfig/selinux 
永久关闭selinux可以使用vi命令打开/etc/sysconfig/selinux 文件将SELINUX=(disable或permissive)
重启服务
[root@localhost html]# shutdown -r now (或者reboot简单粗暴)。
setenforce 1 设置SELinux 成为enforcing模式
setenforce 0 设置SELinux 成为permissive模式

原文地址:https://www.cnblogs.com/xiaoai666/p/14410784.html