天儿真好,
我正在使用Nginx(1.2.7_1,1)和PHP-FPM(5.4.12)运行FreeBSD框(9.1-RELEASE)。使用Apache AB处理并发请求时遇到了很大问题:
ab -n 10000 -c 500 http://10.128.28.164/index.php
我在/var/log/httpd-error.log(成千上万)中遇到的主要错误是:
2013/03/08 11:11:10 [错误] 99855#0:* 44116 kevent()报告connect()失败(54:连接重置连接)连接到上游,客户端:10.128.28.179, server:localhost,request:“GET /index.php HTTP / 1.0”,上游:“fastcgi://10.128.28.164:9000”,主持人:“10.128.28.164”
如果我浏览到服务器(10.128.28.164),它适用于HTML和PHP页面。
任何帮助都会很棒!!
皮特。
我的php-fpm.conf文件如下所示:
pid = run/php-fpm.pid
error_log = log/php-fpm.log
daemonize = yes
events.mechanism = kqueue
; Pool
[www]
user = www
group = www
listen = 10.128.28.164:9000
pm = dynamic
pm.max_children = 100
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
pm.max_requests = 100
我的nginx.conf文件如下所示:
worker_processes 4;
error_log /var/log/httpd-error.log;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
access_log /var/log/httpd-access.log;
sendfile on;
keepalive_timeout 65;
gzip on;
server {
listen 10.128.28.164:80;
server_name localhost;
root /usr/local/www;
location ~ \.php$ {
fastcgi_pass 10.128.28.164:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
include fastcgi_params;
}
location / {
index index.html;
}
}
}
答案 0 :(得分:1)
检查dmesg是否有任何内核消息有效,最大网络连接数或打开文件,或其他一些资源已耗尽(或者更确切地说,达到了限制)。
您引用的日志消息仅告知代理的故事部分。为什么后端正在重置连接,应该在后端的日志中检查...例如,php-fpm也可能超出文件描述符每个进程的限制 - 所以检查你的log / php-fpm.log是否有错误。