nginx+php测试时显示 502 bad gateway的解决方法
Posted 碳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx+php测试时显示 502 bad gateway的解决方法相关的知识,希望对你有一定的参考价值。
http://www.apelearn.com/study_v2/chapter18.html
由于阿铭老师的php版本是 5.3的 我装了 5.5
测试出现了 502 错误
查看日志 借助nginx的错误日志来进行排查vim /usr/local/nginx/logs/nginx_error.log
显示 : connect() to unix:/tmp/php-fcgi.sock failed (13: Permission denied) while connecting to upstream, client: 127.0.0.1, server: localhost, request: "GET /2.php HTTP/1.1", upstream: "fastcgi://unix:/tmp/php-fcgi.sock:", host: "localhost"
解决方法一:
# ll /tmp
srw-rw---- 1 root root 0 Feb 22 00:58 php-fcgi.sock
修改后的权限
[[email protected] nginx]# chmod 777 /tmp/php-fcgi.sock
[[email protected] nginx]# ll /tmp
srwxrwxrwx 1 root root 0 Feb 22 00:58 php-fcgi.sock
修改权限后测试成功
重启 service php-fpm restart
service nginx restart
# ll /tmp
srw-rw---- 1 root root 0 Feb 22 00:58 php-fcgi.sock
权限又恢复了原样
后修改 vim /etc/init.d/php-fpm 在start) 的fi 后加上 chmod 777 /tmp/php-fcgi.sock
解决方法二:
配置错误 因为 nginx 找不到php-fpm了,所以报错,一般是fastcgi_pass后面的路径配置错误了,后面可以是socket或者是ip:port
修改php-fpm的配置文件 vim /usr/local/php/etc/php-fpm.conf 里面的 listen = /tmp/php-fcgi.sock 改为 listen = 127.0.0.1:9000
修改nginx的配置文件 vim /usr/local/nginx/conf/nginx.conf 里面的 fastcgi_pass unix:/tmp/php-fcgi.sock; 改为 fastcgi_pass 127.0.0.1:9000;
以上是关于nginx+php测试时显示 502 bad gateway的解决方法的主要内容,如果未能解决你的问题,请参考以下文章
在 nginx 上安装 PHP7.2 时出现 502 Bad Gateway