After installing PHP and configuring fpm successfully, an error is reported after startup:
Starting php_fpm Aug 03 06:51:54. 269165 [ERROR] fpm_unix_conf_wp (), line 124: please specify user and group other than root, pool 'default'
Solution:
Modify php-fpm.conf
The code is as follows: |
Copy code |
<! -- <Value name = "user"> nobody </value> --> Unix group of processes <! -- <Value name = "group"> nobody </value> --> Change to the user and group specified by nginx <Value name = "user"> www </value> Unix group of processes <Value name = "group"> www </value> |
Or we can configure it like this.
The code is as follows: |
Copy code |
<! -- <Value name = "user"> nobody </value> --> Change <Value name = "user"> nobody </value>
|
Enable the nobody user option, save and exit, and then restart php-fpm:
Modify startup:
The code is as follows: |
Copy code |
[Root @ localhost conf] # php-fpm start Starting php_fpm done |