[07-Dec-2015 17:07:08] NOTICE: [pool www] 'user' directive is ignored when FPM is not running as root [07-Dec-2015 17:07:08] NOTICE: [pool www] 'group' directive is ignored when FPM is not running as root
查看php-fpm日志发现以上提示,尝试将php-fpm的user和group修改成当前用户所匹配的,错误依旧。
通过lsof -Pni4 | grep LISTEN | grep php看到php-fpm确实是以当前用户而非root用户运行。
php-fpm 51546 joshua 7u IPv4 0xef21d7f98be9663 0t0 TCP 127.0.0.1:9056 (LISTEN) php-fpm 51551 joshua 0u IPv4 0xef21d7f98be9663 0t0 TCP 127.0.0.1:9056 (LISTEN) php-fpm 51552 joshua 0u IPv4 0xef21d7f98be9663 0t0 TCP 127.0.0.1:9056 (LISTEN) php-fpm 51553 joshua 0u IPv4 0xef21d7f98be9663 0t0 TCP 127.0.0.1:9056 (LISTEN)
[07-Dec-2015 17:07:08] NOTICE: [pool www] 'user' directive is ignored when FPM is not running as root [07-Dec-2015 17:07:08] NOTICE: [pool www] 'group' directive is ignored when FPM is not running as root
查看php-fpm日志发现以上提示,尝试将php-fpm的user和group修改成当前用户所匹配的,错误依旧。
通过lsof -Pni4 | grep LISTEN | grep php看到php-fpm确实是以当前用户而非root用户运行。
php-fpm 51546 joshua 7u IPv4 0xef21d7f98be9663 0t0 TCP 127.0.0.1:9056 (LISTEN) php-fpm 51551 joshua 0u IPv4 0xef21d7f98be9663 0t0 TCP 127.0.0.1:9056 (LISTEN) php-fpm 51552 joshua 0u IPv4 0xef21d7f98be9663 0t0 TCP 127.0.0.1:9056 (LISTEN) php-fpm 51553 joshua 0u IPv4 0xef21d7f98be9663 0t0 TCP 127.0.0.1:9056 (LISTEN)
改fpm配置让fpm以你想要用户运行,
立即学习“PHP免费学习笔记(深入)”;
sudo vim /etc/php-fpm.d/www.conf
; Set permissions for unix socket, if one is used. In Linux, read/write ; permissions must be set in order to allow connections from a web server. Many ; BSD-derived systems allow connections regardless of permissions. ; Default Values: user and group are set as the running user ; mode is set to 0660 ;listen.owner = nobody ;listen.group = nobody ;listen.mode = 0660 ; Unix user/group of processes ; Note: The user is mandatory. If the group is not set, the default user's group ; will be used. ; RPM: apache Choosed to be able to access some dir as httpd user = apache ; RPM: Keep a group allowed to write in log dir. group = apache
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号