What to do if Linux cannot restart the php service

藏色散人
Release: 2023-03-14 17:12:02
Original
3206 people have browsed it

Solution to the problem that Linux cannot restart the php service: 1. Close php-fpm through "/etc/init.d/php-fpm stop"; 2. Pass "echo "nohup /usr/sbin/php- fpm -R >/dev/..." can be added to boot.

What to do if Linux cannot restart the php service

The operating environment of this article: centos 6.5 system, PHP version 7.1, DELL G3 computer

What should I do if Linux cannot restart the php service?

Solution to the problem that root cannot start php-fpm in Linux:

centos 6.5 64-bit machine uses php-fpm installed with yum. Due to special reasons, php-fpm needs to be started with the root account, but it is found that it cannot be started.

1, modify user and group

# vim /etc/php-fpm.d/www.conf   
  
; RPM: apache Choosed to be able to access some dir as httpd  
user = root        //改为root  
; RPM: Keep a group allowed to write in log dir.  
group = root      //改为root
Copy after login

When restarting php-fpm, the following error is reported

ERROR: [pool www] please specify user and group other than root
[09-Jan-2015 16:54:26] ERROR: FPM initialization failed
Copy after login

Solution:

# /etc/init.d/php-fpm stop   //关闭php-fpm  
  
# nohup /usr/sbin/php-fpm -R >/dev/null 2>&1 &  
  
# echo "nohup /usr/sbin/php-fpm -R >/dev/null 2>&1 &" >> /etc/rc.local  //加入开机启动
Copy after login

Recommended study: "PHP Video Tutorial"

The above is the detailed content of What to do if Linux cannot restart the php service. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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