Re: [Windows + fastcgi + php] Валится или перестаёт отвечать

FireFenix nginx-forum at nginx.us
Thu Apr 18 08:54:53 UTC 2013


Спасибо за ответы, но это сильно погоды не изменяет =( ведь это как
дефолтный конфиг.



Вот с таким конфигом:

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