Linux命令 -- Selinux关闭

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux命令 -- Selinux关闭相关的知识,希望对你有一定的参考价值。

关闭centos 7 selinux
查看selinux当前状态
[root@localhost ~]# getenforce
Enforcing #Enforcing开启状态 Permissive 关闭状态

永久关闭selinux
vim /etc/selinux/config
修改:SELINUX=enforcing 为 SELINUX=disabled
source /etc/selinux/config #使配置生效

临时关闭selinux
[root@localhost ~]# setenforce 0#设置
usage: setenforce [ Enforcing | Permissive | 1 | 0 ]
1 开启状态
0 关闭状态

修改完毕,在查看一下状态
[root@localhost ~]# getenforce
Permissive

以上是关于Linux命令 -- Selinux关闭的主要内容,如果未能解决你的问题,请参考以下文章

如何关闭Linux里边的selinux (转)

SELinux是啥意思,如何关闭?Linux下的防火墙用啥命令打开?

Linux关闭防火墙和关闭SELinux命令

Linux系统关闭SeLinux

Linux关闭selinux

Linux笔记基础篇-防火墙,selinux的关闭