Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一个使用Smarty模板引擎的框架。它在 Windows 中运行良好,但是当我尝试在 LAMP 服务器中运行它时,我收到了类似SELinux has detected suspicious behaviour on your system. 我附上了整个错误消息。请指导我该怎么做。谢谢
Smarty
SELinux has detected suspicious behaviour on your system
您可以通过使用来允许它setsebool -P httpd_unified=1
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 选项列表并根据您的个人喜好进行调整。