找到你得php安装的地方的php-fpm.conf 。打开配置文件、编辑里面的 user = xxxx; group = xxxx; (xxxx为您刚才添加的用户)
重启php-fpm(service php-fpm restart)
重复上面查看php启动进程的用户、应该已经变了。
三、添加刚才的用户xxxx到sudoers里面
visudo //修改/etc/sudoers的内容 ## Allow root to run any commands anywhere root ALL=(ALL) ALL xxxx ALL=(ALL) ALL //新添加这一行 %xxxx ALL=(ALL) NOPASSWD: ALL //设置xxxx组下面的用户使用sudo不需要输入密码 四、到这里已经可以正常在exec中使用sudo your command来执行命令了!!!!