When you install free ioncube loader under CentOS 5.x, which has SELinux enabled by default, you will see following error message: “cannot restore segment prot after reloc: Permission denied” You have a few options here. You can disable SELinux, edit /etc/selinux/config, look for” SELINUX=”, put “disabled” to the right of “=”, it reads like this “SELINUX=disabled”, when you restart the machine, SELinux will be totally disabled. But when you want to enable SELinux lately, the system will relabel all the files at the boot time, it will take very long time to finish the relabeling process, so disable SELinux is not recommended. Then you can put “permissive” in place of “disabled”, or run “ setenforce 0 ” on command line(“ setenforce 1 ” re-enable it), you will see warning messages but SELinux won’t do anything to stop unauthorized access. If you are serious about security, probably you won’t feel comfortable when SELinux is not ...