查看SELinux状态:
1
|
/usr/sbin/sestatus - v | grep "SELinux status:"
|
##如果SELinux status参数为enabled即为开启状态
1
|
getenforce
|
##除了上面的命令还可以使用这个命令,输出结果是permissive为关闭,enforcing为开启。
关闭SELinux:
1、临时关闭(不重启系统即可生效):
1
|
setenforce 0
|
##设置SELinux为permissive模式,即关闭SELinux;如果数字为1则设置SELinux为enforcing模式,即开 启SELinux
2、永久生效(修改后需要重启系统才能生效)
修改/etc/selinux/config 文件,将SELINUX=enforcing改为SELINUX=disabled