|
|
Disable SELinux on CentOS 6From ezUnix
IntroductionYou need to be aware that by disabling SELinux you will be removing a security mechanism on your CentOS system.
Applications should be fixed to work with SELinux, rather than disabling the OS security mechanism. You could even switch to Permissive mode where every operation is allowed. Operations that would be denied are allowed and a message is logged identifying that it would be denied.
Execution
Change SELINUX=enforcing to SELINUX=disabled # 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 - SELinux is fully disabled. SELINUX=disabled # SELINUXTYPE= type of policy in use. Possible values are: # targeted - Only targeted network daemons are protected. # strict - Full SELinux protection. SELINUXTYPE=targeted This will disable SELinux on your next reboot. To diable SELinux, without having to reboot, you can use the setenforce command like so: # setenforce 0 This will revert to enforcing once you reboot
That's all folks.
Talk:Disable SELinux on CentOS 6 |