Nginx php-fpm fast-cgi 502 Bad Gateway错误是FastCGI有问题,造成NGINX 502错误的可能性比较多。
将网上找到的一些和502 Bad Gateway错误有关的问题和排查方法列一下,先从FastCGI配置入手:
1.FastCGI进程是否已经启动
2.FastCGI worker进程数是否不够
通过命令查看服务器上一共开了多少的 php-cgi 进程
ps -fe |grep "php" | grep -v "grep" | wc -l
使用如下命令查看已经有多少个php-cgi进程用来处理tcp请求
netstat -anop | grep "php" | grep -v "grep" | wc -l
接近配置文件中设置的数值,表明worker进程数设置太少
参见:http://blog.s135.com/post/361.htm
3.FastCGI执行时间过长
根据实际情况调高以下参数值
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
4.FastCGI Buffer不够
nginx和apache一样,有前端缓冲限制,可以调整缓冲参数
fastcgi_buffer_size 32k;
fastcgi_buffers 8 32k;
参见:http://www.hiadmin.com/nginx-502-gateway-error%E4%B8%80%E4%BE%8B/
5.Proxy Buffer不够
如果你用了Proxying,调整
proxy_buffer_size 16k;
proxy_buffers 4 16k;
参见:http://www.ruby-forum.com/topic/169040
6.https转发配置错误
正确的配置方法
server_name www.mydomain.com;
location /myproj/repos {
set $fixed_destination $http_destination;
if ( $http_destination ~* ^https(.*)$ )
{
set $fixed_destination http$1;
}
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Destination $fixed_destination;
proxy_pass http://subversion_hosts;
}
参见:http://www.ruby-forum.com/topic/169040
http://bizhi.knowsky.com/
7.查看php-fpm.log
错误请参看:http://www.admin99.net/read.php/396.htm
http://hi.baidu.com/dugu2008/blog/item/0d9e9bf8e8c13b08d8f9fd14.html
8.php的bug
请参看:http://bugs.php.net/bug.php?id=41593
9.php-fpm.conf的配置
请参看http://www.jefflei.com/post/232.html
http://www.php-oa.com/2008/06/05/php-fpm.html
10.nginx.conf的rewrite-url规则等
11.php-fpm.pid
鄙人在/php/sbin/php-fpm 里面把
php_fpm_PID=/data1/php/logs/php-fpm.pid修改成
#php_fpm_PID=/data1/php/logs/php-fpm.pid
故猜想是用户权限的问题已php-fpm.conf里的用户启动该服务估计问题会消失
另外nginx 400 bad request 错误的原因和解决办法
在nginx.conf中,将client_header_buffer_size和large_client_header_buffers都调大,可缓解此问题。
其中主要配置是client_header_buffer_size这一项,默认是1k,所以header小于1k的话是不会出现问题的。
按我现在配置是:
client_header_buffer_size 16k;
large_client_header_buffers 4 64k;
这个配置可接收16k以下的header,在浏览器中cookie的字节数上限会非常大,所以实在是不好去使用那最大值。
详细解决方案
Nginx php-fpm fast-cgi 502 Bad Gateway异常处理
热度:529 发布时间:2012-09-08 10:48:07.0
相关解决方案
- 发信报"邮箱不可用,not local host xxx not a gateway"异常!
- Push proxy gateway 网关模拟器软件相关有关问题(参与有分!)
- !装完exchange SDK了,Exchange 2000 Sample Gateway code在哪里
- nginx url路由~该怎么处理
- windows 上 php+nginx 并发下不去,求解决方法
- 刚配置了 centos+nginx+php 但DEDE的验证码就是无法显示解决方案
- windows 下 php+nginx 并发上不去,求解决方法
- 刚刚配置了 centos+nginx+php 但DEDE的验证码就是无法显示
- nginx url路由~解决办法
- [nginx] nginx 域名转发如何设置
- default gateway ip 与主机ip不在同一网段,却能ping通?解决方法
- steal the network gateway 请教这句是什么意思呢
- Nginx + Tomcat 服务器集群架构及调优心得小结
- nginx 502 Bad Gateway 异常解决方法
- nginx proxy_cache在windows2008上使用报错
- nginx+tomcat+memcached实现负载均衡,该怎么解决
- 在Centos+nginx+wordpress环境停启动iptables 网站返回502
- Nginx Alias 无法解析PHP的解决方法
- nginx + php 执行过程中出现404该如何解决
- nginx +php 环境筹建之php安装
- nginx 配备php环境
- php nginx 环境搭建 异常
- nginx+php5.3.20上,file_get_contents无法使用
- nginx 署理本地的html
- windows nginx +php 配备
- nginx“虚拟目录”不支持php的解决方法
- ubuntu10.04配备 nginx + php-fpm 模式
- Ubuntu上安装PHP+Nginx
- MYSQL interactive_timeout跟wait_timeout、NGINX keepalive_timeout
- linux+nginx 应用include无法包含文件?