我正在运行 Nginx,并通过 FastCGI 将 php 请求代理到 PHP-FPM 进行处理。我会随机收到 502 Bad Gateway 错误页面 - 我可以通过快速点击我的 PHP 网站/刷新页面一两分钟来重现此问题。当我收到 502 错误页面时,我所要做的就是刷新浏览器,页面就会正确刷新。
这是我的设置:
nginx/0.7.64 PHP 5.3.2 (fpm-fcgi)(构建于:2010 年 4 月 1 日 06:42:04)Ubuntu 9.10(最新 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 配置如下:
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 问题。有人知道如何修复它吗?
编辑/更新:我正在使用supervisor启动php-fpm(因此没有取消进程)。
答案1
我觉得你max_children
太低了
<value name="max_children">3</value>
您还可以尝试将 php-fpm 从 TCP 端口切换到 unix 套接字:
php-fpm.conf
<value name="listen_address">/tmp/php.sock</value>
nginx.conf
fastcgi_pass unix:/tmp/php.sock;
详细说明:
- Unix 套接字速度快约 20%
- 您不需要对每个连接都使用时间等待套接字
答案2
您需要降级 nginx 和 php 稳定版本