centos 9 永久禁用 SELinux

一 永久禁用selinux

确认grubby软件包是否已经安装

# rpm -q grubby

要永久禁用 SELinux:

配置您的引导加载程序以添加selinux=0到内核​​命令行:

# grubby --update-kernel ALL --args selinux=0

重新启动系统:

# reboot

确认

重启后,getenforce命令确认返回结果为Disabled

二 SELinux 相关内核引导参数

enforcing=0 相当于进入permissive模式

selinux=0 启动后如果# touch /.autorelabel ,启用了selinux,则下次启动自动relabel

autorelabel=1 相当于 # touch /.autorelabel ; reboot

查看 SELinux 相关内核引导参数

# yum install kernel-doc 

/usr/share/doc/kernel-doc-4.18.0/Documentation/admin-guide/kernel-parameters.txt

你可能感兴趣的:(selinux,mariadb,centos)