Centos 7如何临时和永久关闭selinux

2025-11-20 17:55:51

1、运行命令 getenforce 获取当前selinux状态

Enforcing为开启

Centos 7如何临时和永久关闭selinux

2、运行命令 sudo setenforce 0

运行命令 getenforce

状态变为 Permissive

此命令临时关闭 selinux  重启失效

Centos 7如何临时和永久关闭selinux

1、运行命令

sudo vim /etc/sysconfig/selinux

Centos 7如何临时和永久关闭selinux

2、找到行

SELINUX=enforcing

Centos 7如何临时和永久关闭selinux

3、替换为

SELINUX=disabled

保存退出

reboot

Centos 7如何临时和永久关闭selinux

4、重启后 运行命令 sestatus

SELinux status :      disabled

永久关闭selinux成功

Centos 7如何临时和永久关闭selinux

1、运行命令

sudo sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config

将 /etc/selinux/config 文件中 

SELINUX=enforcing 

替换为

SELINUX=disabled

运行命令

sudo grep SELINUX=disabled /etc/selinux/config

显示

SELINUX=disabled

确认替换修改成功

reboot

Centos 7如何临时和永久关闭selinux

2、重启后 运行命令 sestatus

SELinux status :      disabled

永久关闭selinux成功

Enjoy it !!!

Centos 7如何临时和永久关闭selinux

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢