How to modify the php running user

王林
Release: 2023-03-06 16:52:01
Original
5262 people have browsed it

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.

How to modify the php running user

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
Copy after login

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!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!