php-fpm开启报错-ERROR: An another FPM instance seems..

ⅰ亾dé卋堺 提交于 2020-04-01 14:07:04

在部署项目的时候遇到了 An another FPM instance seems to already listen on /tmp/php-cgi.sock
解决方法:

netstat -ant | grep 9000  //查看启动进程,发现没启动成功

查看php-fpm.conf里面的配置:

vim  /usr/local/php/etc/php-fpm.conf
[www]
listen = /tmp/php-cgi.sock   //注意这里,要与下面的一致
listen.backlog = -1
listen.allowed_clients = 127.0.0.1
listen.owner = www
listen.group = www

此时根据配置文件的listen地址做对应的修改:

vim /usr/local/nginx/conf/nginx.conf
location ~ [^/]\.php(/|$) {
       fastcgi_pass unix:/tmp/php-cgi.sock;    //把127.0.0.1:9000改为此行
       fastcgi_index index.php;
       fastcgi_param SCRIPT_FILENAME     $document_root$fastcgi_script_name;
       include fastcgi_params;
}
location / {
      root   html;
      index index.php index.html index.htm;
}

修改完后重启nginx,然后启动php-fpm就恢复正常了.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!