我正在使用一个使用Smarty
模板引擎的框架。它在Windows中运行良好,但当我尝试在LAMP服务器中运行它时,我收到了SELinux has detected suspicious behaviour on your system
之类的消息。我附上的整个错误信息。请指导我做什么。感谢
答案 0 :(得分:7)
您可以使用setsebool -P httpd_unified=1
http的正常SELinux设置可以或多或少地使用PHP:
setsebool -P httpd_enable_cgi on
setsebool -P httpd_unified on
setsebool -P httpd_builtin_scripting on
否则你可以使用
getsebool -a | grep httpd
获取与httpd相关的EeLinux选项列表,并根据您的个人喜好进行调整。