Security-Enhanced Linux (SELinux) is a Linux kernel security module that provides a mechanism for supporting access control security policies, including mandatory access controls (MAC).
https://selinuxproject.org/page/Main_Page
Steps to Disable SELinux
- Configure the boot loader to add
selinux=0
to the kernel command line.
# grubby --update-kernel ALL --args selinux=0
- Restart the system.
# reboot
- After reboot, confirm that the
getenforce
command returns “Disabled”.
# getenforce Disabled
Post your comment on this topic.