클라이언트에 "502 Bad Gateway"오류가 간헐적으로 반환되기 시작한 2013 년 10 월 3 일 오전 10시 50 분까지 정상적으로 작동하는 서버가 있습니다.
브라우저 요청 5 개 중 약 4 개는 성공하지만 502 개 중 약 5 개 중 1 개는 실패합니다.
nginx 오류 로그에는 수백 가지 오류가 포함되어 있습니다.
2013/10/05 06:28:17 [error] 3111#0: *54528 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: 66.249.66.75, server: www.bec-components.co.uk request: ""GET /?_n=Fridgefreezer/Hotpoint/8591P;_i=x8078 HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "www.bec-components.co.uk"
그러나 PHP 오류 로그에는 일치하는 오류가 없습니다.
PHP가 연결을 재설정하는 이유에 대한 자세한 정보를 얻을 수있는 방법이 있습니까?
이것은 nginx.conf
;
user www-data;
worker_processes 4;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
access_log /var/log/nginx/access.log;
sendfile on;
keepalive_timeout 30;
tcp_nodelay on;
client_max_body_size 100m;
gzip on;
gzip_types text/plain application/xml text/javascript application/x-javascript text/css;
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
include /gvol/sites/*/nginx.conf;
}
그리고 이것은 .conf
이 사이트를위한 것입니다;
server {
server_name www.bec-components.co.uk bec3.uk.to bec4.uk.to bec.home;
root /gvol/sites/bec/www/;
index index.php index.html;
location ~ \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires 2592000; # 30 days
log_not_found off;
}
## Trigger client to download instead of display '.xml' files.
location ~ \.xml$ {
add_header Content-disposition "attachment; filename=$1";
}
location ~ \.php$ {
fastcgi_read_timeout 3600;
include /etc/nginx/fastcgi_params;
keepalive_timeout 0;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
}
}
## bec-components.co.uk ##
server {
server_name bec-components.co.uk;
rewrite ^/(.*) http://www.bec-components.co.uk$1 permanent;
}
PHP
스크립트입니다. 나는을 사용하지 않고 php-fpm
, 그냥 실행 php-fastcgi
하여 실행 중 php-cgi -b 127.0.0.1:9000
입니다. 3 년 동안 완벽하게 작동 해 왔습니다. 왜이 문제가 발생했는지 알 수 없습니다.
php-cgi -b 127.0.0.1:9000
트래픽 증가와 리소스 부족으로 인해 업스트림 서비스 ( )가 간헐적으로 실패하고 있습니다.