Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Windows + fastcgi + php] Валится или перестаёт отвечать
- To: nginx-ru@xxxxxxxxx
- Subject: Re: [Windows + fastcgi + php] Валится или перестаёт отвечать
- From: "FireFenix" <nginx-forum@xxxxxxxx>
- Date: Thu, 18 Apr 2013 04:54:53 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=helium.jlkhosting.com; s=x; h=Date:Sender:From:References:In-Reply-To:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=gBnsO+gHZPj56ZHYw3VrHUCkVAq8lRuvWvJRXr74qQk=; b=yE7iCjuPcavSeQ5ZaHRjEtDJ1Sxk2oIT/JbRl748ArnokgIYhMn5iLQcpbEE1LHvFgKa+VuFwXuEZkriWxA+gheGLxS83/cz8cxtk+ZhBdfMBqoaEblYXPD3HRvfgv9IcXoJtK1Zg8CRRBBoTjtBFW16HWnetvYxyBBxBqPSJJ4=;
- In-reply-to: <201304171727.47069.vbart@nginx.com>
- References: <201304171727.47069.vbart@nginx.com>
Спасибо за ответы, но это сильно погоды не изменяет =( ведь это как
дефолтный конфиг.
Вот с таким конфигом:
worker_processes 1;
error_log logs/error.log info;
events
{
worker_connections 1024;
}
http
{
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request"
'
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 600s 600s;
gzip on;
server
{
listen 8080;
server_name localhost;
access_log off;
merge_slashes on;
rewrite ^/panorama/(.*)$ /panorama/index.php;
location /
{
root D:/Site;
index index.html index.htm index.php;
}
location ~ \.php$
{
root D:/Site;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
$document_root$fastcgi_script_name;
include fastcgi_params;
}
}
}
При:
C:\>ab.exe -n 1000 -c 100 http://10.10.1.1:8080/index.php
This is ApacheBench, Version 2.3 <$Revision: 1430300 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking 10.10.1.1 (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
apr_pollset_poll: The timeout specified has expired (70007)
Total of 593 requests completed
В лог валится кучу флуда, строк вида:
2013/04/18 11:44:27 [error] 3920#3716: *1089 WSARecv() failed (10054:
Удаленный хост принудительно разорвал существующее подключение) while
reading response header from upstream, client: 10.0.0.4, server: localhost,
request: "GET /index.php HTTP/1.0", upstream: "fastcgi://127.0.0.1:9000",
host: "10.10.1.1:8080"
2013/04/18 11:44:27 [error] 3920#3716: *1165 WSARecv() failed (10054:
Удаленный хост принудительно разорвал существующее подключение) while
reading response header from upstream, client: 10.0.0.4, server: localhost,
request: "GET /index.php HTTP/1.0", upstream: "fastcgi://127.0.0.1:9000",
host: "10.10.1.1:8080"
2013/04/18 11:45:00 [info] 3920#3716: *1373 client prematurely closed
connection, so upstream connection is closed too while connecting to
upstream, client: 10.0.0.4, server: localhost, request: "GET /index.php
HTTP/1.0", upstream: "fastcgi://127.0.0.1:9000", host: "10.10.1.1:8080"
2013/04/18 11:45:00 [info] 3920#3716: *1387 client prematurely closed
connection, so upstream connection is closed too while connecting to
upstream, client: 10.0.0.4, server: localhost, request: "GET /index.php
HTTP/1.0", upstream: "fastcgi://127.0.0.1:9000", host: "10.10.1.1:8080"
2013/04/18 11:45:00 [info] 3920#3716: *1390 client prematurely closed
connection, so upstream connection is closed too
И прибивается процесс php-cgi.
Подскажите, как быть?
>Ну и на всякий случай явно замечу, что "правильно настроить для
>~500 юзеров" включает в себя заменить Windows на что-нибудь более
>другое.
Ну и железо понменять тоже бы не помешало, но мне сейчас важно, чтобы просто
все запросы уходили в пул и выдавали результат как выполняться, а не так
чтобы всё падало и с концами =(
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,238430,238452#msg-238452
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|