- 编辑/etc/php/7.0/fpm/pool.d/www.conf,把user和group修改为root
; 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 = root
group = root
- 编辑/lib/systemd/system/php7.0-fpm.service,在ExecStart的–nodaemonize前面加上–allow-to-run-as-root,就像下面这样
ExecStart=/usr/sbin/php-fpm7.0 --allow-to-run-as-root --nodaemonize...
- 执行命令
systemctl daemon-reload
- 重启php-fpm即可
service php7.0-fpm restart
- 最后,可以通过ps命令来查看效果
ps auwx | grep php
可以看到,php-fpm已经以root身份运行了。