解决cannot restore segment prot after reloc: Permission denied

post by rocdk890 / 2012-6-15 17:53 Friday linux技术
  今天给php编译完ZendOptimizer,重启php-fpm,出现下列提示:"cannot restore segment prot after reloc: Permission denied",以为是selinux没有放过httpd_disable_trans,使用setsebool -P httpd_disable_trans 1命令,让selinux放过web server的控制,重启nginx后,执行php -v发现没有解决问题,就网上搜了下,下面把方法分享给大家:
1.编辑/etc/selinux/config,找到这段:
# 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=enforcing 注释掉:#SELINUX=enforcing,然后新加一行为:
SELINUX=disabled
2.如果关闭selinux还是不行或者不想关闭selinux的话,那可以执行下面的命令:
chcon -t texrel_shlib_t /路径/路径/名字.so    (这个文件视具体执行文件)
通过上面两步可以解决php的cannot restore segment prot after reloc: Permission denied问题.
夜空- 本站版权
1、本站所有主题由该文章作者发表,该文章作者与夜空享有文章相关版权
2、其他单位或个人使用、转载或引用本文时必须同时征得该文章作者和夜空的同意
3、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
4、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
5、原文链接:blog.slogra.com/post-212.html

标签: php 错误 selinux 问题 关闭 ZendOptimizer

评论: