How to modify the php running user: 1. Open the www.conf configuration file; 2. Find [www-data] and modify it to [www]; 3. Restart php-fpm.
The specific steps are as follows:
(Recommended tutorial: php video tutorial)
cd /etc/php/7.2/fpm/pool.d/ sudo vi www.conf # 找到 www-data # 都改为如下内容 (应该有4个地方) www cd /run/php/ ls -al # 这个目录下面有两个文件 # php7.0-fpm.pid和php7.0-fpm.sock # 修改这两个文件的权限 sudo chown www:www php7.2-fpm.pid sudo chown www:www php7.2-fpm.sock # 重启php-fpm sudo service php7.2-fpm restart ps -ef | grep php
Related Recommended: php training
The above is the detailed content of How to modify the php running user. For more information, please follow other related articles on the PHP Chinese website!