Nginx 502 Bad Gateway 錯誤、解決方案和監控

Nginx 502 Bad Gateway 是由於nginx由於內存不足,PHP反應緩慢,php進程不足等引發的一類服務器錯誤。php

發送問題的緣由:
一、PHP FastCGI進程數不夠用前端


當網站併發訪問巨大時,php fastcgi的進程數不有必定的保障,由於cgi是單線程多進程工做的,也就是說cgi須要處理完一個頁面後再繼續下一個頁面。若是進程數不夠,當訪問巨大的時候,cgi按排隊處理以前的請求,以後的請求只有被放棄。這個時候nginx就會不時的出現502錯誤。linux

二、PHP FastCGI的內存不夠用nginx


當nginx返回靜態頁面時,這個問題通常不會出現,由於nginx不須要php cgi的處理而直接返回靜態頁面。可是當網頁須要處理大量的php複雜操做的時候,例如執行api採集,或者採集頁面的時候,那對php的要求是至關高的,若是配置給他的內存太少,那很容易就會致使php崩潰。web

解決方法:
一、請檢查你的FastCGI進程是否啓動apache


二、FastCGI進程不夠使用vim


請經過執行 netstat -anpo | grep "php-cgi" | wc -l 判斷,是否接近你啓動的FastCGI進程,接近你的設置,表示進程不夠。api

三、執行超時bash


能夠把 nginx.conf 這幾項的值調大一些:服務器

fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;四、FastCGI緩衝不夠


nginx和apache同樣,有前端緩衝限制,能夠把 nginx.conf 這幾項的值調大一些:

fastcgi_buffer_size 32k;
fastcgi_buffers 8 32k;
五、Proxy緩衝不夠


若是你使用了Proxying,能夠把 nginx.conf 這幾項的值調大一些:

proxy_buffer_size 16k;
proxy_buffers 4 16k;
六、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;
}
七、php腳本執行時間過長


將 php-fpm.conf 的 <value name="request_terminate_timeout">0s</value> 的 0s 改爲一個時間。
監控腳本
當發生 Nginx 502 Bad Gateway 錯誤問題時候重啓 PHP-FPM進程,併發送郵件通知管理員:

#!/bin/bash

STATE=`curl --head http://www.linuxde.net | awk 'NR==1' | awk '{print $2}'`

if [ "$STATE" -eq "502" ]; then
    /bin/bash /usr/local/webserver/php/sbin/php-fpm reload
    /bin/bash /usr/local/webserver/nginx/sbin/nginx -s reload
     echo "[報警]" "http error 502" $(date +"%y-%m-%d %H:%M:%S") "Reload php-fpm And Nginx" | mail -s "ERROR" 123@gmail.com
elif [ "$STATE" -ne "502" ] && [ "$STATE" -ne "200" ]; then
    echo "[報警]" "Web Server Stop Working" $(date +"%y-%m-%d %H:%M:%S") | mail -s "ERROR" 123@gmail.com
fi
定時執行腳本,這裏是30分鐘執行一次,能夠根據狀況而定

vim /etc/crontab

*/30 * * * * root /root/satools/reload_php-fpm_error.sh

相關文章
相關標籤/搜索