将selinux 的值设置成disabled

2022/9/13 5:24:51

本文主要是介绍将selinux 的值设置成disabled,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

菜鸟:小辉

 

进入到Linux的终端

[qwe@zxc ~]$ su root

切换的root下面

 

直接输入 vi 文件名 就能够进入 vi 的一般模式了。请注意,记得 vi 后面一定要加文件名,不管该文件存在与否!

[root@zxc qwe]# vim /etc/selinux/config

 

之后会出现以下内容:

发现交换文件 "/etc/selinux/.config.swp"
所有者: root 日期: Sun Sep 11 11:10:55 2022
文件名: /etc/sysconfig/selinux
修改过: 否
用户名: root 主机名: zxc
进程 ID: 2965
正在打开文件 "/etc/selinux/config"
日期: Sun Sep 11 12:36:46 2022
比交换文件新!

(1) Another program may be editing the same file. If this is the case,
be careful not to end up with two different instances of the same
file when making changes. Quit, or continue with caution.
(2) An edit session for this file crashed.
如果是这样,请用 ":recover" 或 "vim -r /etc/selinux/config"
恢复修改的内容 (请见 ":help recovery")。
如果你已经进行了恢复,请删除交换文件 "/etc/selinux/.config.swp"
以避免再看到此消息。

交换文件 "/etc/selinux/.config.swp" 已存在!
以只读方式打开([O]), 直接编辑((E)), 恢复((R)), 删除交换文件((D)), 退出((Q)), 中止((A)):

 

输入 E,之后出现的内容程序

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled    #这个地方改成 disabled    #按i进入编辑模式
# SELINUXTYPE= can take one of three values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted

 

 

编辑完成之后,按ESC键 和 SHIFT  和 冒号  底部会出现 冒号 :    之后在冒号的后面输入wq  保存保存文件并退出vi

之后重启虚拟机

shutdown -r now

 

输入命令:

重启后,运行命令getenforce,验证SELinux状态为disabled,表明SELinux已关闭。

 

[root@zxc qwe]# sestatus

 

SELinux status: disabled

 



这篇关于将selinux 的值设置成disabled的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程