Heim >Backend-Entwicklung >PHP-Tutorial >centos7 - centos 7.2 /var/run/php-fpm/php-fpm.sock不存在

centos7 - centos 7.2 /var/run/php-fpm/php-fpm.sock不存在

WBOY
WBOYOriginal
2016-06-06 20:13:053291Durchsuche

要在nginx中配置重写规则,其中有这么一句:

<code>fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock</code>

可是在centos7.2中,这个路径没有这个文件,只有一个php-fpm.pid文件,那么上面这个文件在哪里?

回复内容:

要在nginx中配置重写规则,其中有这么一句:

<code>fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock</code>

可是在centos7.2中,这个路径没有这个文件,只有一个php-fpm.pid文件,那么上面这个文件在哪里?

find / -name "*php*.sock"找一下sock文件的位置,如果没找到的话就是没配置Unix Socket,只能访问TCP端口,可以为改为fastcgi_pass 127.0.0.1:9000

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php-mysql - php7中怎样开启mysql?Nächster Artikel:php自定义路由