Disabling SELinux

SELinux (Security-Enhanced Linux), an access control implementation, can affect web UI access. To disable SELinux, do the following:

  1. Open the SELinux configuration file:
    /etc/selinux/config
  2. Locate the following line:
    SELINUX=enforcing
  3. Change the value to disabled:
    SELINUX=disabled
    Save your changes.
  4. On the next reboot, SELinux is permanently disabled. To dynamically disable it before the reboot, run the following command:
    # setenforce 0