为什么php-fpm像没人一样运行?

前端之家收集整理的这篇文章主要介绍了为什么php-fpm像没人一样运行?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我最近按照以下说明在我的服务器上安装了PHP-fpm(CENTOS 6.5 x86_64标准,WHM 11.44.1(版本7)): http://infoliser.com/how-to-configure-apache-2-2-with-php-fpm-using-whm-cpanel-and-easyapache/

PHPinfo()显示的服务器API现在是FPM / FastCGI.

但是,当我运行包含exec(‘id’)的PHP脚本时,我得到:

uid = 99(nobody)gid = 99(nobody)groups = 99(nobody)

我得到的印象是PHP-fpm将作为PHP脚本所有者的uid运行,而不是作为http进程的所有者运行(如本例所示).这个页面http://php-fpm.org/说fpm具有“能够使用不同的uid / gid / chroot / environment和不同的PHP.ini(替换safe_mode)启动工作者”.

我究竟做错了什么?

PHP-FPM不会将脚本作为脚本的所有者执行,而是作为匹配池配置中配置的用户执行.

在我的Debian系统上,默认池www在/etc/PHP5/fpm/pool.d/www.conf中定义,包含:

; Unix user/group of processes
; Note: The user is mandatory. If the group is not set,the default user's group
;       will be used.
user = www-data
group = www-data

你的可能有user = nobody和group = nobody.您可以通过在Apache / Nginx /任何配置中分配它们来创建更多池并使用它们.

原文链接:https://www.f2er.com/php/139129.html

猜你在找的PHP相关文章