Disable SELinux on Fedora
Permanently Disable SELinux on Fedora
Update the SELinux configuration file and set SELINUX=disabled
to permanently disable the SELinux on your system. This will completely disable all the SELinux contexts.
sudo nano /etc/selinux/config
Set SELINUX
value to disabled
:
SELINUX=disabled
Reboot your instance after making changes.
Note – You can again activate the SELinux by setting SELINUX=enforcing
in configuration file.
No Comments