by harry » Fri Jul 26, 2013 1:19 pm
It is quiet natural that the SELinux can cause certain problems during the installation of certain software. To get rid of this problem, you can disable SElinux temporarily or permanently. However, it is not wise to disable SELinux permanently.
It is easy to disable SElinux from command line by setenforce command:
Code:
# setenforce 0
This will disable SElinux temporarily until your system will reboot or you enable SElinux with:
Code:
# setenforce 1
The commands above are same as disabling SElinux with:
Code:
# echo 0 > /selinux/enforce
Permanently disable SElinux
To permanently disable SElinux you need to edit SElinux's config file /etc/selinux/config and add/alter line disable it:
Code:
SELINUX=disabled
Hope this will solve your problem