centos安裝php後apache不能啟動的解決方法:1、編輯“/etc/sysconfig/selinux”,加上“SELINUX=disabled”;2、不關閉SELINUX即可。
本文操作環境:centOS6.8系統、PHP5版,DELL G3電腦
centos安裝php後apache無法啟動的解決方法:
在安裝完成PHP後, 重新啟動apache封包如下錯誤
原因是Linux有一個SELinux保護模式所造成的。
Syntax error on line 268 of /usr/local/apache2/conf/httpd.conf: Cannot load /usr/local/apache2/modules/libphp5.so into server: /usr/local/apache2/modules/libphp5.so: cannot restore segment prot after reloc: Permission denied
解決方法
1.編輯/etc/sysconfig/selinux,找到:
# 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=enforcing
如果SELINUX已經是SELINUX=disabled,那就不用改了,否則就把SELINUX=enforcing 註解掉,新加一行:
SELINUX=disabled
儲存,退出。
2.不關閉SELINUX的方法:
# setenforce 0 # chcon -c -v -R -u system_u -r object_r -t textrel_shlib_t /usr/local/apache/modules/libphp5.so # service httpd restart # setenforce 1
推薦學習:《PHP影片教學》
以上是centos安裝php後apache不能啟動怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!