我正在运行 Nginx 并通过 FastCGI 将 php 请求代理到 PHP-FPM 进行处理。我将随机收到 502 Bad Gateway 错误页面 - 我可以通过非常快速地单击我的 PHP 网站/刷新页面一两分钟来重现此问题。当我得到 502 错误页面时,我所要做的就是刷新浏览器并正确刷新页面。
这是我的设置:
nginx/0.7.64 PHP 5.3.2 (fpm-fcgi) (内置: Apr 1 2010 06:42:04) Ubuntu 9.10 (Latest 2.6 Paravirt)
我使用这个 ./configure 指令编译了 PHP-FPM
./configure --enable-fpm --sysconfdir=/etc/php5/conf.d --with-config-file-path=/etc/php5/conf.d/php.ini --with-zlib --with -openssl --enable-zip --enable-exif --enable-ftp --enable-mbstring --enable-mbregex --enable-soap --enable-sockets --disable-cgi --with-curl --with -curlwrappers --with-gd --with-mcrypt --enable-memcache --with-mhash --with-jpeg-dir=/usr/local/lib --with-mysql=/usr/bin/mysql -- with-mysqli=/usr/bin/mysql_config --enable-pdo --with-pdo-mysql=/usr/bin/mysql --with-pdo-sqlite --with-pspell --with-snmp --with- sqlite --with-tidy --with-xmlrpc --with-xsl
我的 php-fpm.conf 看起来像这样(相关部分):
...
<value name="pm">
<value name="max_children">3</value>
...
<value name="request_terminate_timeout">60s</value>
<value name="request_slowlog_timeout">30s</value>
<value name="slowlog">/var/log/php-fpm.log.slow</value>
<value name="rlimit_files">1024</value>
<value name="rlimit_core">0</value>
<value name="chroot"></value>
<value name="chdir"></value>
<value name="catch_workers_output">yes</value>
<value name="max_requests">500</value>
...
我已经尝试将 max_children 增加到 10 并且没有区别。我还尝试将其设置为“动态”并将 max_children 设置为 50,并将 start_server 设置为“5”,没有任何区别。
我尝试过同时使用 1 个和 5 个 nginx 工作进程。
我的 fastcgi_params conf 看起来像:
fastcgi_connect_timeout 60;
fastcgi_send_timeout 180;
fastcgi_read_timeout 180;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
fastcgi_intercept_errors on;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
fastcgi_param REDIRECT_STATUS 200;
Nginx 将错误记录为:
[错误] 3947#0:* 10530 connect() 失败(111:连接被拒绝)同时连接到上游,客户端:68.40.xxx.xxx,服务器:www.domain.com,请求:“GET /favicon.ico HTTP/ 1.1”,上游:“fastcgi://127.0.0.1:9000”,主机:“www.domain.com”
PHP-FPM 在发生错误时记录以下内容:
[NOTICE] pid 17161, fpm_unix_init_main(), line 255: getrlimit(nofile): max:1024, cur:1024
[NOTICE] pid 17161, fpm_event_init_main(), line 93: libevent: using epoll
[NOTICE] pid 17161, fpm_init(), line 50: fpm is running, pid 17161
[DEBUG] pid 17161, fpm_children_make(), line 403: [pool default] child 17162 started
[DEBUG] pid 17161, fpm_children_make(), line 403: [pool default] child 17163 started
[DEBUG] pid 17161, fpm_children_make(), line 403: [pool default] child 17164 started
[NOTICE] pid 17161, fpm_event_loop(), line 111: ready to handle connections
当我重新创建问题时,我的 CPU 使用率最高可达 10-15%。我的免费内存 (free -m) > 130MB
当我使用 php5-cgi 来服务我的 php 请求时,我遇到了这个间歇性的 502 Bad Gateway 问题。有谁知道如何解决这一问题?
编辑/更新:我正在使用主管启动 php-fpm (因此没有被取消)。
我觉得你
max_children
的太低了您也可以尝试从 TCP 端口切换到 php-fpm 的 unix 套接字:
php-fpm.conf
nginx.conf
详细说明:
您需要降级 nginx 和 php 稳定版