Oct
12
2015
By abernal
In order to disable SELinux follow this process
Process
1. Edit the SELinux configuration file located a /etc/selinux/config
[alejandro@sandbox drupal]$ sudo vim /etc/selinux/config
2. Se the property SELINUX as 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 - No SELinux policy is loaded. SELINUX=disabled # SELINUXTYPE= can take one of these three values: # targeted - Targeted processes are protected, # minimum - Modification of targeted policy. Only selected processes are protected. # mls - Multi Level Security protection. SELINUXTYPE=targeted
3. Reboot the machine
[alejandro@sandbox drupal]$ sudo reboot