码迷,mamicode.com
首页 > Web开发 > 详细

Nginx+PHP-FPM 访问出现 502错误

时间:2014-07-08 12:29:59      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:nginx   502   php-fpm   

游戏后端代码采用Nginx+PHP-FPM的方式部署。放问游戏的时候偶尔会出现502错误。

Nginx错误日志出现以下日志

2014/07/05 17:20:58 [error] 18431#0: *148739 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: 192.168.1.56, server: , request: "POST /gateway.php HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: ""

现列出排查思路

  1. 在/etc/php.ini中设置PHP脚本执行的最长时间max_execution_time = 30,这里设置为30秒。

  2. 在/etc/php-fpm.conf 中设置PHP-FPM进程处理每个进程的超时时间request_terminate_timeout = 30s

  3. 在/etc/php-fpm.conf中开启PHP的慢日志

    request_slowlog_timeout = 1s  

    slowlog = /var/log/php-fpm/www-slow.log


  4. 在Nginx配置文件nginx.conf 中设置

    fastcgi_connect_timeout 60; 设置Nginx和FastCGI Server建立连接的超时时间,默认是60秒,但是这个值不能经常超过75秒

    fastcgi_send_timeout 60;    设置Nginx传送请求到FastCGI Server的超时时间

    fastcgi_read_timeout 60;    设置FastCGI Server读取请求的超时时间


本文出自 “Linux SA John” 博客,请务必保留此出处http://john88wang.blog.51cto.com/2165294/1435045

Nginx+PHP-FPM 访问出现 502错误,布布扣,bubuko.com

Nginx+PHP-FPM 访问出现 502错误

标签:nginx   502   php-fpm   

原文地址:http://john88wang.blog.51cto.com/2165294/1435045

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!