500 ошибка сразу на истале

Dmitriy fobfreeman на gmail.com
Ср Апр 25 22:58:33 UTC 2012


Помогите пожалуйста решить проблему - уже не знаю куда смотреть.
root на vm9120:/etc/nginx# uname -a
Linux vm9120 3.1.0-1.2-xen #5 SMP Mon Mar 5 14:10:54 MSK 2012 i686 GNU/Linux
конфиг nginx

user                    www-data;
worker_processes        8;
error_log               /var/log/nginx/error.log debug;
pid                     /var/run/nginx.pid;


http {
    include             /etc/nginx/mime.types;
    client_max_body_size 100m;
    access_log          /var/log/nginx/access.log;
    sendfile            on;
    keepalive_timeout   65;
    tcp_nodelay         on;
    port_in_redirect   off;
    gzip                on;
    gzip_min_length     1000;
    gzip_proxied        any;
    gzip_types          text/plain ext/html text/xml application/xml
application/x-javascript text/javascript text/css text/json;
    gzip_disable        "msie6";
    gzip_comp_level     8;
    charset             utf-8;
    include             /etc/nginx/conf.d/*.conf;
    include             /etc/nginx/sites-enabled/*;
}
конфиг site1
upstream backend-site1 {server unix:/var/run/php5-site1.sock;}
server {
    listen              80;
    server_name         localhost;
    root                /var/www/site1.com/www;
    access_log          /var/log/nginx/site1.com-access.log;
    error_log           /var/log/nginx/site1.com-error.log;
    index               index.php;
    rewrite_log         on;
    location /core/
{

        deny
all;

    }
    location / {
        try_files       $uri $uri/ @rewrite;
    }
       location @rewrite {
        rewrite         ^/(.*)$ /index.php?q=$1;
    }
    location ~ \.php$ {
        include         fastcgi_params;
        fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_pass    backend-site1;
    }
    location ~* ^.+\.(jpg|jpeg|gif|css|png|js|ico|bmp)$ {
       access_log       off;
       expires          10d;
       break;
    }
    location ~ /\.ht {
        deny            all;
    }
}
site1.com-error.log
2012/04/25 02:07:07 [debug] 2385#0: *1 accept: 176.36.135.38 fd:18
2012/04/25 02:07:07 [debug] 2385#0: *1 event timer add: 18: 60000:3865426140
2012/04/25 02:07:07 [debug] 2385#0: *1 epoll add event: fd:18 op:1
ev:80000001
2012/04/25 02:07:07 [debug] 2385#0: *1 post event 08161F58
2012/04/25 02:07:07 [debug] 2385#0: *1 delete posted event 08161F58
2012/04/25 02:07:07 [debug] 2385#0: *1 malloc: 08129B50:680
2012/04/25 02:07:07 [debug] 2385#0: *1 malloc: 081405B8:1024
2012/04/25 02:07:07 [debug] 2385#0: *1 posix_memalign: 0812F8D0:4096 @16
2012/04/25 02:07:07 [debug] 2385#0: *1 http process request line
2012/04/25 02:07:07 [debug] 2385#0: *1 recv: fd:18 461 of 1024
2012/04/25 02:07:07 [debug] 2385#0: *1 http request line: "GET
/installation/index.php HTTP/1.1"
2012/04/25 02:07:07 [debug] 2385#0: *1 http uri: "/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 http args: ""
2012/04/25 02:07:07 [debug] 2385#0: *1 http exten: "php"
2012/04/25 02:07:07 [debug] 2385#0: *1 http process request header line
2012/04/25 02:07:07 [debug] 2385#0: *1 http header: "Host: 109.234.152.158"
2012/04/25 02:07:07 [debug] 2385#0: *1 http header: "User-Agent:
Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 Firefox/11.0"
2012/04/25 02:07:07 [debug] 2385#0: *1 http header: "Accept:
text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2012/04/25 02:07:07 [debug] 2385#0: *1 http header: "Accept-Language:
ru-ru,ru;q=0.8,en-us;q=0.5,en;q=0.3"
2012/04/25 02:07:07 [debug] 2385#0: *1 http header: "Accept-Encoding: gzip,
deflate"
2012/04/25 02:07:07 [debug] 2385#0: *1 http header: "DNT: 1"
2012/04/25 02:07:07 [debug] 2385#0: *1 http header: "Cookie:
sess=bde0132883b2ce18c1365d5554950e3de378d8b2;
PHPSESSID=hmp17tm1gt1nic7eeq4n9ppjr5"
2012/04/25 02:07:07 [debug] 2385#0: *1 http header: "Connection: keep-alive"
2012/04/25 02:07:07 [debug] 2385#0: *1 http header: "Cache-Control:
max-age=0"
2012/04/25 02:07:07 [debug] 2385#0: *1 http header done
2012/04/25 02:07:07 [debug] 2385#0: *1 event timer del: 18: 3865426140
2012/04/25 02:07:07 [debug] 2385#0: *1 generic phase: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 rewrite phase: 1
2012/04/25 02:07:07 [debug] 2385#0: *1 test location: "/"
2012/04/25 02:07:07 [debug] 2385#0: *1 test location: "core/"
2012/04/25 02:07:07 [debug] 2385#0: *1 test location: ~ "\.php$"
2012/04/25 02:07:07 [debug] 2385#0: *1 using configuration "\.php$"
2012/04/25 02:07:07 [debug] 2385#0: *1 http cl:-1 max:104857600
2012/04/25 02:07:07 [debug] 2385#0: *1 rewrite phase: 3
2012/04/25 02:07:07 [debug] 2385#0: *1 post rewrite phase: 4
2012/04/25 02:07:07 [debug] 2385#0: *1 generic phase: 5
2012/04/25 02:07:07 [debug] 2385#0: *1 generic phase: 6
2012/04/25 02:07:07 [debug] 2385#0: *1 generic phase: 7
2012/04/25 02:07:07 [debug] 2385#0: *1 access phase: 8
2012/04/25 02:07:07 [debug] 2385#0: *1 access phase: 9
2012/04/25 02:07:07 [debug] 2385#0: *1 access phase: 10
2012/04/25 02:07:07 [debug] 2385#0: *1 post access phase: 11
2012/04/25 02:07:07 [debug] 2385#0: *1 try files phase: 12
2012/04/25 02:07:07 [debug] 2385#0: *1 http init upstream, client timer: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 epoll add event: fd:18 op:3
ev:80000005
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "QUERY_STRING"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "QUERY_STRING: "
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "REQUEST_METHOD"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var: "GET"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "REQUEST_METHOD: GET"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "CONTENT_TYPE"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "CONTENT_TYPE: "
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "CONTENT_LENGTH"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "CONTENT_LENGTH: "
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "SCRIPT_FILENAME"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var: "/var/www/
site1.com/www/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "SCRIPT_FILENAME:
/var/www/site1.com/www/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "SCRIPT_NAME"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var:
"/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "SCRIPT_NAME:
/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "REQUEST_URI"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var:
"/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "REQUEST_URI:
/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "DOCUMENT_URI"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var:
"/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "DOCUMENT_URI:
/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "DOCUMENT_ROOT"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var: "/var/www/
site1.com/www"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "DOCUMENT_ROOT:
/var/www/site1.com/www"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "SERVER_PROTOCOL"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var: "HTTP/1.1"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "SERVER_PROTOCOL:
HTTP/1.1"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "GATEWAY_INTERFACE"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "CGI/1.1"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "GATEWAY_INTERFACE:
CGI/1.1"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "SERVER_SOFTWARE"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "nginx/"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var: "1.1.19"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "SERVER_SOFTWARE:
nginx/1.1.19"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "REMOTE_ADDR"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var: "176.36.135.38"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "REMOTE_ADDR:
176.36.135.38"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "REMOTE_PORT"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var: "57392"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "REMOTE_PORT: 57392"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "SERVER_ADDR"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var: "109.234.152.158"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "SERVER_ADDR:
109.234.152.158"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "SERVER_PORT"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var: "80"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "SERVER_PORT: 80"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "SERVER_NAME"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var: "localhost"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "SERVER_NAME:
localhost"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "REDIRECT_STATUS"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "200"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "REDIRECT_STATUS: 200"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script copy: "SCRIPT_FILENAME"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var: "/var/www/
site1.com/www"
2012/04/25 02:07:07 [debug] 2385#0: *1 http script var:
"/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "SCRIPT_FILENAME:
/var/www/site1.com/www/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "HTTP_HOST:
109.234.152.158"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "HTTP_USER_AGENT:
Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 Firefox/11.0"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "HTTP_ACCEPT:
text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param:
"HTTP_ACCEPT_LANGUAGE: ru-ru,ru;q=0.8,en-us;q=0.5,en;q=0.3"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param:
"HTTP_ACCEPT_ENCODING: gzip, deflate"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "HTTP_DNT: 1"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "HTTP_COOKIE:
sess=bde0132883b2ce18c1365d5554950e3de378d8b2;
PHPSESSID=hmp17tm1gt1nic7eeq4n9ppjr5"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "HTTP_CONNECTION:
keep-alive"
2012/04/25 02:07:07 [debug] 2385#0: *1 fastcgi param: "HTTP_CACHE_CONTROL:
max-age=0"
2012/04/25 02:07:07 [debug] 2385#0: *1 http cleanup add: 0813060C
2012/04/25 02:07:07 [debug] 2385#0: *1 get rr peer, try: 1
2012/04/25 02:07:07 [debug] 2385#0: *1 socket 19
2012/04/25 02:07:07 [debug] 2385#0: *1 epoll add connection: fd:19
ev:80000005
2012/04/25 02:07:07 [debug] 2385#0: *1 connect to
unix:/var/run/php5-site1.sock, fd:19 #2
2012/04/25 02:07:07 [debug] 2385#0: *1 connected
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream connect: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 posix_memalign: 08139DB0:128 @16
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream send request
2012/04/25 02:07:07 [debug] 2385#0: *1 chain writer buf fl:0 s:1048
2012/04/25 02:07:07 [debug] 2385#0: *1 chain writer in: 08130628
2012/04/25 02:07:07 [debug] 2385#0: *1 writev: 1048
2012/04/25 02:07:07 [debug] 2385#0: *1 chain writer out: 00000000
2012/04/25 02:07:07 [debug] 2385#0: *1 event timer add: 19: 60000:3865426141
2012/04/25 02:07:07 [debug] 2385#0: *1 http finalize request: -4,
"/installation/index.php?" a:1, c:2
2012/04/25 02:07:07 [debug] 2385#0: *1 http request count:2 blk:0
2012/04/25 02:07:07 [debug] 2385#0: *1 post event 0816EF60
2012/04/25 02:07:07 [debug] 2385#0: *1 post event 0816EF94
2012/04/25 02:07:07 [debug] 2385#0: *1 delete posted event 0816EF94
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream request:
"/installation/index.php?"
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream dummy handler
2012/04/25 02:07:07 [debug] 2385#0: *1 delete posted event 0816EF60
2012/04/25 02:07:07 [debug] 2385#0: *1 http run request:
"/installation/index.php?"
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream check client, write
event:1, "/installation/index.php"
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream recv(): -1 (11:
Resource temporarily unavailable)
2012/04/25 02:07:07 [debug] 2385#0: *1 post event 08161F8C
2012/04/25 02:07:07 [debug] 2385#0: *1 post event 0816EF94
2012/04/25 02:07:07 [debug] 2385#0: *1 delete posted event 0816EF94
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream request:
"/installation/index.php?"
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream dummy handler
2012/04/25 02:07:07 [debug] 2385#0: *1 delete posted event 08161F8C
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream request:
"/installation/index.php?"
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream process header
2012/04/25 02:07:07 [debug] 2385#0: *1 malloc: 081308E8:4096
2012/04/25 02:07:07 [debug] 2385#0: *1 recv: fd:19 256 of 4096
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 01
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 06
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 00
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 01
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 00
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: E2
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 06
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 00
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record length: 226
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi parser: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi header: "Status: 500
Internal Server Error"
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi parser: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi header: "X-Powered-By:
PHP/5.4.0-3"
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi parser: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi header: "Expires: Thu,
19 Nov 1981 08:52:00 GMT"
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi parser: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi header: "Cache-Control:
no-store, no-cache, must-revalidate, post-check=0, pre-check=0"
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi parser: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi header: "Pragma:
no-cache"
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi parser: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi header: "Content-type:
text/html"
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi parser: 1
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi header done
2012/04/25 02:07:07 [debug] 2385#0: *1 xslt filter header
2012/04/25 02:07:07 [debug] 2385#0: *1 charset: "" > "utf-8"
2012/04/25 02:07:07 [debug] 2385#0: *1 posix_memalign: 081318F0:4096 @16
2012/04/25 02:07:07 [debug] 2385#0: *1 HTTP/1.1 500 Internal Server Error
Server: nginx/1.1.19
Date: Tue, 24 Apr 2012 22:07:07 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
X-Powered-By: PHP/5.4.0-3
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0,
pre-check=0
Pragma: no-cache

2012/04/25 02:07:07 [debug] 2385#0: *1 write new buf t:1 f:0 08131900, pos
08131900, size: 353 file: 0, size: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 http write filter: l:0 f:0 s:353
2012/04/25 02:07:07 [debug] 2385#0: *1 http cacheable: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream process upstream
2012/04/25 02:07:07 [debug] 2385#0: *1 pipe read upstream: 1
2012/04/25 02:07:07 [debug] 2385#0: *1 pipe preread: 22
2012/04/25 02:07:07 [debug] 2385#0: *1 readv: 1:3840
2012/04/25 02:07:07 [debug] 2385#0: *1 pipe recv chain: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 pipe buf free s:0 t:1 f:0 081308E8,
pos 081309D2, size: 22 file: 0, size: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 pipe length: -1
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 01
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 03
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 00
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 01
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 00
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 08
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 00
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record byte: 00
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi record length: 8
2012/04/25 02:07:07 [debug] 2385#0: *1 http fastcgi sent end request
2012/04/25 02:07:07 [debug] 2385#0: *1 free: 081308E8
2012/04/25 02:07:07 [debug] 2385#0: *1 pipe write downstream: 1
2012/04/25 02:07:07 [debug] 2385#0: *1 pipe write downstream done
2012/04/25 02:07:07 [debug] 2385#0: *1 event timer: 19, old: 3865426141,
new: 3865426142
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream exit: 00000000
2012/04/25 02:07:07 [debug] 2385#0: *1 finalize http upstream request: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 finalize http fastcgi request
2012/04/25 02:07:07 [debug] 2385#0: *1 free rr peer 1 0
2012/04/25 02:07:07 [debug] 2385#0: *1 close http upstream connection: 19
2012/04/25 02:07:07 [debug] 2385#0: *1 free: 08139DB0, unused: 88
2012/04/25 02:07:07 [debug] 2385#0: *1 event timer del: 19: 3865426141
2012/04/25 02:07:07 [debug] 2385#0: *1 reusable connection: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 http upstream temp fd: -1
2012/04/25 02:07:07 [debug] 2385#0: *1 http output filter
"/installation/index.php?"
2012/04/25 02:07:07 [debug] 2385#0: *1 http copy filter:
"/installation/index.php?"
2012/04/25 02:07:07 [debug] 2385#0: *1 image filter
2012/04/25 02:07:07 [debug] 2385#0: *1 xslt filter body
2012/04/25 02:07:07 [debug] 2385#0: *1 http postpone filter
"/installation/index.php?" BFC60ED8
2012/04/25 02:07:07 [debug] 2385#0: *1 http chunk: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 write old buf t:1 f:0 08131900, pos
08131900, size: 353 file: 0, size: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 write new buf t:0 f:0 00000000, pos
080E53CE, size: 5 file: 0, size: 0
2012/04/25 02:07:07 [debug] 2385#0: *1 http write filter: l:1 f:0 s:358
2012/04/25 02:07:07 [debug] 2385#0: *1 http write filter limit 0
2012/04/25 02:07:07 [debug] 2385#0: *1 writev: 358
2012/04/25 02:07:07 [debug] 2385#0: *1 http write filter 00000000
2012/04/25 02:07:07 [debug] 2385#0: *1 http copy filter: 0
"/installation/index.php?"
2012/04/25 02:07:07 [debug] 2385#0: *1 http finalize request: 0,
"/installation/index.php?" a:1, c:1
2012/04/25 02:07:07 [debug] 2385#0: *1 set http keepalive handler
2012/04/25 02:07:07 [debug] 2385#0: *1 http close request
2012/04/25 02:07:07 [debug] 2385#0: *1 http log handler
2012/04/25 02:07:07 [debug] 2385#0: *1 free: 00000000
2012/04/25 02:07:07 [debug] 2385#0: *1 free: 0812F8D0, unused: 20
2012/04/25 02:07:07 [debug] 2385#0: *1 free: 081318F0, unused: 3264
2012/04/25 02:07:07 [debug] 2385#0: *1 event timer add: 18: 65000:3865431142
2012/04/25 02:07:07 [debug] 2385#0: *1 free: 08129B50
2012/04/25 02:07:07 [debug] 2385#0: *1 free: 081405B8
2012/04/25 02:07:07 [debug] 2385#0: *1 hc free: 00000000 0
2012/04/25 02:07:07 [debug] 2385#0: *1 hc busy: 00000000 0
2012/04/25 02:07:07 [debug] 2385#0: *1 tcp_nodelay
2012/04/25 02:07:07 [debug] 2385#0: *1 reusable connection: 1
2012/04/25 02:07:07 [debug] 2385#0: *1 post event 08161F58
2012/04/25 02:07:07 [debug] 2385#0: *1 delete posted event 08161F58
2012/04/25 02:07:07 [debug] 2385#0: *1 http keepalive handler
2012/04/25 02:07:07 [debug] 2385#0: *1 malloc: 08129B50:1024
2012/04/25 02:07:07 [debug] 2385#0: *1 recv: fd:18 -1 of 1024
2012/04/25 02:07:07 [debug] 2385#0: *1 recv() not ready (11: Resource
temporarily unavailable)
2012/04/25 02:08:12 [debug] 2385#0: *1 event timer del: 18: 3865431142
2012/04/25 02:08:12 [debug] 2385#0: *1 http keepalive handler
2012/04/25 02:08:12 [debug] 2385#0: *1 close http connection: 18
2012/04/25 02:08:12 [debug] 2385#0: *1 reusable connection: 0
2012/04/25 02:08:12 [debug] 2385#0: *1 free: 08129B50
2012/04/25 02:08:12 [debug] 2385#0: *1 free: 00000000
2012/04/25 02:08:12 [debug] 2385#0: *1 free: 0813F010, unused: 40
/var/log/nginx/error.log
2012/04/25 02:07:04 [debug] 2382#0: bind() 0.0.0.0:80 #9
2012/04/25 02:07:04 [debug] 2382#0: counter: B7700080, 1
2012/04/25 02:07:04 [debug] 2383#0: bind() 0.0.0.0:80 #9
2012/04/25 02:07:04 [notice] 2383#0: using the "epoll" event method
2012/04/25 02:07:04 [debug] 2383#0: counter: B7765080, 1
2012/04/25 02:07:04 [notice] 2383#0: nginx/1.1.19
2012/04/25 02:07:04 [notice] 2383#0: OS: Linux 3.1.0-1.2-xen
2012/04/25 02:07:04 [notice] 2383#0: getrlimit(RLIMIT_NOFILE): 1024:4096
2012/04/25 02:07:04 [debug] 2384#0: write: 10, BFC61286, 5, 0
2012/04/25 02:07:04 [debug] 2384#0: setproctitle: "nginx: master process
/usr/sbin/nginx"
2012/04/25 02:07:04 [notice] 2384#0: start worker processes
2012/04/25 02:07:04 [debug] 2384#0: channel 3:10
2012/04/25 02:07:04 [notice] 2384#0: start worker process 2385
2012/04/25 02:07:04 [debug] 2384#0: channel 11:12
2012/04/25 02:07:04 [notice] 2384#0: start worker process 2386
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:1 pid:2386 fd:11 to s:0
pid:2385 fd:3
2012/04/25 02:07:04 [debug] 2385#0: malloc: 0812E0B0:6144
2012/04/25 02:07:04 [debug] 2384#0: channel 13:14
2012/04/25 02:07:04 [notice] 2384#0: start worker process 2387
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:2 pid:2387 fd:13 to s:0
pid:2385 fd:3
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:2 pid:2387 fd:13 to s:1
pid:2386 fd:11
2012/04/25 02:07:04 [debug] 2384#0: channel 15:16
2012/04/25 02:07:04 [notice] 2384#0: start worker process 2388
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:3 pid:2388 fd:15 to s:0
pid:2385 fd:3
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:3 pid:2388 fd:15 to s:1
pid:2386 fd:11
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:3 pid:2388 fd:15 to s:2
pid:2387 fd:13
2012/04/25 02:07:04 [debug] 2384#0: channel 17:18
2012/04/25 02:07:04 [debug] 2385#0: malloc: 08148EE8:102400
2012/04/25 02:07:04 [debug] 2385#0: malloc: 08161EF0:53248
2012/04/25 02:07:04 [debug] 2385#0: malloc: 0816EEF8:53248
2012/04/25 02:07:04 [debug] 2385#0: epoll add event: fd:10 op:1 ev:00000001
2012/04/25 02:07:04 [debug] 2385#0: setproctitle: "nginx: worker process"
2012/04/25 02:07:04 [debug] 2385#0: worker cycle
2012/04/25 02:07:04 [notice] 2384#0: start worker process 2389
2012/04/25 02:07:04 [debug] 2385#0: accept mutex locked
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:4 pid:2389 fd:17 to s:0
pid:2385 fd:3
2012/04/25 02:07:04 [debug] 2385#0: epoll timer: -1
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:4 pid:2389 fd:17 to s:1
pid:2386 fd:11
2012/04/25 02:07:04 [debug] 2385#0: epoll: fd:10 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:4 pid:2389 fd:17 to s:2
pid:2387 fd:13
2012/04/25 02:07:04 [debug] 2385#0: post event 08161F24
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:4 pid:2389 fd:17 to s:3
pid:2388 fd:15
2012/04/25 02:07:04 [debug] 2385#0: timer delta: 5
2012/04/25 02:07:04 [debug] 2385#0: posted events 08161F24
2012/04/25 02:07:04 [debug] 2385#0: posted event 08161F24
2012/04/25 02:07:04 [debug] 2385#0: delete posted event 08161F24
2012/04/25 02:07:04 [debug] 2385#0: channel handler
2012/04/25 02:07:04 [debug] 2384#0: channel 19:20
2012/04/25 02:07:04 [debug] 2385#0: channel: 16
2012/04/25 02:07:04 [debug] 2385#0: channel command: 1
2012/04/25 02:07:04 [debug] 2385#0: get channel s:1 pid:2386 fd:3
2012/04/25 02:07:04 [debug] 2385#0: channel: 16
2012/04/25 02:07:04 [debug] 2385#0: channel command: 1
2012/04/25 02:07:04 [debug] 2385#0: get channel s:2 pid:2387 fd:12
2012/04/25 02:07:04 [debug] 2385#0: channel: 16
2012/04/25 02:07:04 [debug] 2385#0: channel command: 1
2012/04/25 02:07:04 [debug] 2385#0: get channel s:3 pid:2388 fd:13
2012/04/25 02:07:04 [debug] 2385#0: channel: 16
2012/04/25 02:07:04 [debug] 2385#0: channel command: 1
2012/04/25 02:07:04 [debug] 2385#0: get channel s:4 pid:2389 fd:14
2012/04/25 02:07:04 [debug] 2385#0: channel: -2
2012/04/25 02:07:04 [debug] 2385#0: posted event 00000000
2012/04/25 02:07:04 [debug] 2385#0: worker cycle
2012/04/25 02:07:04 [debug] 2385#0: accept mutex locked
2012/04/25 02:07:04 [debug] 2385#0: epoll timer: -1
2012/04/25 02:07:04 [debug] 2387#0: malloc: 0812E0B0:6144
2012/04/25 02:07:04 [debug] 2386#0: malloc: 0812E0B0:6144
2012/04/25 02:07:04 [debug] 2387#0: malloc: 08148EE8:102400
2012/04/25 02:07:04 [debug] 2387#0: malloc: 08161EF0:53248
2012/04/25 02:07:04 [debug] 2386#0: malloc: 08148EE8:102400
2012/04/25 02:07:04 [debug] 2386#0: malloc: 08161EF0:53248
2012/04/25 02:07:04 [debug] 2387#0: malloc: 0816EEF8:53248
2012/04/25 02:07:04 [debug] 2386#0: malloc: 0816EEF8:53248
2012/04/25 02:07:04 [debug] 2387#0: epoll add event: fd:14 op:1 ev:00000001
2012/04/25 02:07:04 [debug] 2386#0: epoll add event: fd:12 op:1 ev:00000001
2012/04/25 02:07:04 [debug] 2387#0: setproctitle: "nginx: worker process"
2012/04/25 02:07:04 [debug] 2387#0: worker cycle
2012/04/25 02:07:04 [debug] 2386#0: setproctitle: "nginx: worker process"
2012/04/25 02:07:04 [debug] 2386#0: worker cycle
2012/04/25 02:07:04 [debug] 2387#0: accept mutex lock failed: 0
2012/04/25 02:07:04 [debug] 2387#0: epoll timer: 500
2012/04/25 02:07:04 [debug] 2386#0: accept mutex lock failed: 0
2012/04/25 02:07:04 [debug] 2386#0: epoll timer: 500
2012/04/25 02:07:04 [debug] 2387#0: epoll: fd:14 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2386#0: epoll: fd:12 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2387#0: channel handler
2012/04/25 02:07:04 [debug] 2386#0: channel handler
2012/04/25 02:07:04 [notice] 2384#0: start worker process 2390
2012/04/25 02:07:04 [debug] 2387#0: channel: 16
2012/04/25 02:07:04 [debug] 2386#0: channel: 16
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:5 pid:2390 fd:19 to s:0
pid:2385 fd:3
2012/04/25 02:07:04 [debug] 2387#0: channel command: 1
2012/04/25 02:07:04 [debug] 2386#0: channel command: 1
2012/04/25 02:07:04 [debug] 2387#0: get channel s:3 pid:2388 fd:10
2012/04/25 02:07:04 [debug] 2386#0: get channel s:2 pid:2387 fd:10
2012/04/25 02:07:04 [debug] 2387#0: channel: 16
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:5 pid:2390 fd:19 to s:1
pid:2386 fd:11
2012/04/25 02:07:04 [debug] 2385#0: epoll: fd:10 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:5 pid:2390 fd:19 to s:2
pid:2387 fd:13
2012/04/25 02:07:04 [debug] 2386#0: channel: 16
2012/04/25 02:07:04 [debug] 2387#0: channel command: 1
2012/04/25 02:07:04 [debug] 2385#0: post event 08161F24
2012/04/25 02:07:04 [debug] 2386#0: channel command: 1
2012/04/25 02:07:04 [debug] 2385#0: timer delta: 0
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:5 pid:2390 fd:19 to s:3
pid:2388 fd:15
2012/04/25 02:07:04 [debug] 2385#0: posted events 08161F24
2012/04/25 02:07:04 [debug] 2387#0: get channel s:4 pid:2389 fd:12
2012/04/25 02:07:04 [debug] 2385#0: posted event 08161F24
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:5 pid:2390 fd:19 to s:4
pid:2389 fd:17
2012/04/25 02:07:04 [debug] 2385#0: delete posted event 08161F24
2012/04/25 02:07:04 [debug] 2386#0: get channel s:3 pid:2388 fd:11
2012/04/25 02:07:04 [debug] 2385#0: channel handler
2012/04/25 02:07:04 [debug] 2387#0: channel: 16
2012/04/25 02:07:04 [debug] 2386#0: channel: 16
2012/04/25 02:07:04 [debug] 2385#0: channel: 16
2012/04/25 02:07:04 [debug] 2387#0: channel command: 1
2012/04/25 02:07:04 [debug] 2385#0: channel command: 1
2012/04/25 02:07:04 [debug] 2387#0: get channel s:5 pid:2390 fd:13
2012/04/25 02:07:04 [debug] 2386#0: channel command: 1
2012/04/25 02:07:04 [debug] 2384#0: channel 21:22
2012/04/25 02:07:04 [debug] 2385#0: get channel s:5 pid:2390 fd:15
2012/04/25 02:07:04 [debug] 2387#0: channel: -2
2012/04/25 02:07:04 [debug] 2387#0: timer delta: 5
2012/04/25 02:07:04 [debug] 2387#0: posted events 00000000
2012/04/25 02:07:04 [debug] 2387#0: worker cycle
2012/04/25 02:07:04 [debug] 2387#0: accept mutex locked
2012/04/25 02:07:04 [debug] 2387#0: epoll timer: -1
2012/04/25 02:07:04 [debug] 2386#0: get channel s:4 pid:2389 fd:14
2012/04/25 02:07:04 [debug] 2389#0: malloc: 0812E0B0:6144
2012/04/25 02:07:04 [debug] 2385#0: channel: -2
2012/04/25 02:07:04 [debug] 2386#0: channel: 16
2012/04/25 02:07:04 [debug] 2385#0: posted event 00000000
2012/04/25 02:07:04 [debug] 2386#0: channel command: 1
2012/04/25 02:07:04 [debug] 2385#0: worker cycle
2012/04/25 02:07:04 [debug] 2386#0: get channel s:5 pid:2390 fd:15
2012/04/25 02:07:04 [debug] 2385#0: accept mutex lock failed: 1
2012/04/25 02:07:04 [debug] 2389#0: malloc: 08148EE8:102400
2012/04/25 02:07:04 [debug] 2386#0: channel: -2
2012/04/25 02:07:04 [debug] 2385#0: epoll timer: 500
2012/04/25 02:07:04 [debug] 2386#0: timer delta: 5
2012/04/25 02:07:04 [debug] 2389#0: malloc: 08161EF0:53248
2012/04/25 02:07:04 [debug] 2386#0: posted events 00000000
2012/04/25 02:07:04 [debug] 2386#0: worker cycle
2012/04/25 02:07:04 [debug] 2386#0: accept mutex lock failed: 0
2012/04/25 02:07:04 [debug] 2386#0: epoll timer: 500
2012/04/25 02:07:04 [debug] 2389#0: malloc: 0816EEF8:53248
2012/04/25 02:07:04 [debug] 2389#0: epoll add event: fd:18 op:1 ev:00000001
2012/04/25 02:07:04 [debug] 2389#0: setproctitle: "nginx: worker process"
2012/04/25 02:07:04 [debug] 2389#0: worker cycle
2012/04/25 02:07:04 [notice] 2384#0: start worker process 2391
2012/04/25 02:07:04 [debug] 2389#0: accept mutex lock failed: 0
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:6 pid:2391 fd:21 to s:0
pid:2385 fd:3
2012/04/25 02:07:04 [debug] 2389#0: epoll timer: 500
2012/04/25 02:07:04 [debug] 2389#0: epoll: fd:18 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:6 pid:2391 fd:21 to s:1
pid:2386 fd:11
2012/04/25 02:07:04 [debug] 2389#0: channel handler
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:6 pid:2391 fd:21 to s:2
pid:2387 fd:13
2012/04/25 02:07:04 [debug] 2385#0: epoll: fd:10 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:6 pid:2391 fd:21 to s:3
pid:2388 fd:15
2012/04/25 02:07:04 [debug] 2385#0: channel handler
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:6 pid:2391 fd:21 to s:4
pid:2389 fd:17
2012/04/25 02:07:04 [debug] 2386#0: epoll: fd:12 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2385#0: channel: 16
2012/04/25 02:07:04 [debug] 2386#0: channel handler
2012/04/25 02:07:04 [debug] 2387#0: epoll: fd:14 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:6 pid:2391 fd:21 to s:5
pid:2390 fd:19
2012/04/25 02:07:04 [debug] 2385#0: channel command: 1
2012/04/25 02:07:04 [debug] 2387#0: post event 08161F24
2012/04/25 02:07:04 [debug] 2385#0: get channel s:6 pid:2391 fd:16
2012/04/25 02:07:04 [debug] 2387#0: timer delta: 1
2012/04/25 02:07:04 [debug] 2385#0: channel: -2
2012/04/25 02:07:04 [debug] 2387#0: posted events 08161F24
2012/04/25 02:07:04 [debug] 2385#0: timer delta: 1
2012/04/25 02:07:04 [debug] 2384#0: channel 23:24
2012/04/25 02:07:04 [debug] 2385#0: posted events 00000000
2012/04/25 02:07:04 [debug] 2387#0: posted event 08161F24
2012/04/25 02:07:04 [debug] 2385#0: worker cycle
2012/04/25 02:07:04 [debug] 2387#0: delete posted event 08161F24
2012/04/25 02:07:04 [debug] 2385#0: accept mutex locked
2012/04/25 02:07:04 [debug] 2387#0: channel handler
2012/04/25 02:07:04 [debug] 2385#0: epoll timer: -1
2012/04/25 02:07:04 [debug] 2387#0: channel: 16
2012/04/25 02:07:04 [debug] 2387#0: channel command: 1
2012/04/25 02:07:04 [debug] 2387#0: get channel s:6 pid:2391 fd:16
2012/04/25 02:07:04 [debug] 2389#0: channel: 16
2012/04/25 02:07:04 [debug] 2387#0: channel: -2
2012/04/25 02:07:04 [debug] 2387#0: posted event 00000000
2012/04/25 02:07:04 [debug] 2389#0: channel command: 1
2012/04/25 02:07:04 [debug] 2387#0: worker cycle
2012/04/25 02:07:04 [debug] 2389#0: get channel s:5 pid:2390 fd:10
2012/04/25 02:07:04 [debug] 2387#0: accept mutex lock failed: 1
2012/04/25 02:07:04 [debug] 2387#0: epoll timer: 500
2012/04/25 02:07:04 [debug] 2389#0: channel: 16
2012/04/25 02:07:04 [debug] 2389#0: channel command: 1
2012/04/25 02:07:04 [debug] 2389#0: get channel s:6 pid:2391 fd:12
2012/04/25 02:07:04 [debug] 2388#0: malloc: 0812E0B0:6144
2012/04/25 02:07:04 [debug] 2389#0: channel: -2
2012/04/25 02:07:04 [debug] 2389#0: timer delta: 6
2012/04/25 02:07:04 [debug] 2386#0: channel: 16
2012/04/25 02:07:04 [debug] 2389#0: posted events 00000000
2012/04/25 02:07:04 [debug] 2386#0: channel command: 1
2012/04/25 02:07:04 [debug] 2389#0: worker cycle
2012/04/25 02:07:04 [debug] 2386#0: get channel s:6 pid:2391 fd:16
2012/04/25 02:07:04 [debug] 2389#0: accept mutex lock failed: 0
2012/04/25 02:07:04 [debug] 2388#0: malloc: 08148EE8:102400
2012/04/25 02:07:04 [debug] 2386#0: channel: -2
2012/04/25 02:07:04 [debug] 2389#0: epoll timer: 500
2012/04/25 02:07:04 [debug] 2386#0: timer delta: 1
2012/04/25 02:07:04 [debug] 2388#0: malloc: 08161EF0:53248
2012/04/25 02:07:04 [debug] 2386#0: posted events 00000000
2012/04/25 02:07:04 [debug] 2386#0: worker cycle
2012/04/25 02:07:04 [debug] 2386#0: accept mutex lock failed: 0
2012/04/25 02:07:04 [debug] 2386#0: epoll timer: 500
2012/04/25 02:07:04 [debug] 2388#0: malloc: 0816EEF8:53248
2012/04/25 02:07:04 [debug] 2390#0: malloc: 0812E0B0:6144
2012/04/25 02:07:04 [debug] 2390#0: malloc: 08148EE8:102400
2012/04/25 02:07:04 [debug] 2390#0: malloc: 08161EF0:53248
2012/04/25 02:07:04 [notice] 2384#0: start worker process 2392
2012/04/25 02:07:04 [debug] 2390#0: malloc: 0816EEF8:53248
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:7 pid:2392 fd:23 to s:0
pid:2385 fd:3
2012/04/25 02:07:04 [debug] 2388#0: epoll add event: fd:16 op:1 ev:00000001
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:7 pid:2392 fd:23 to s:1
pid:2386 fd:11
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:7 pid:2392 fd:23 to s:2
pid:2387 fd:13
2012/04/25 02:07:04 [debug] 2388#0: setproctitle: "nginx: worker process"
2012/04/25 02:07:04 [debug] 2385#0: epoll: fd:10 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:7 pid:2392 fd:23 to s:3
pid:2388 fd:15
2012/04/25 02:07:04 [debug] 2385#0: post event 08161F24
2012/04/25 02:07:04 [debug] 2386#0: epoll: fd:12 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2387#0: epoll: fd:14 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2385#0: timer delta: 0
2012/04/25 02:07:04 [debug] 2387#0: channel handler
2012/04/25 02:07:04 [debug] 2385#0: posted events 08161F24
2012/04/25 02:07:04 [debug] 2386#0: channel handler
2012/04/25 02:07:04 [debug] 2385#0: posted event 08161F24
2012/04/25 02:07:04 [debug] 2387#0: channel: 16
2012/04/25 02:07:04 [debug] 2385#0: delete posted event 08161F24
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:7 pid:2392 fd:23 to s:4
pid:2389 fd:17
2012/04/25 02:07:04 [debug] 2385#0: channel handler
2012/04/25 02:07:04 [debug] 2387#0: channel command: 1
2012/04/25 02:07:04 [debug] 2387#0: get channel s:7 pid:2392 fd:17
2012/04/25 02:07:04 [debug] 2385#0: channel: 16
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:7 pid:2392 fd:23 to s:5
pid:2390 fd:19
2012/04/25 02:07:04 [debug] 2387#0: channel: -2
2012/04/25 02:07:04 [debug] 2385#0: channel command: 1
2012/04/25 02:07:04 [debug] 2387#0: timer delta: 0
2012/04/25 02:07:04 [debug] 2385#0: get channel s:7 pid:2392 fd:17
2012/04/25 02:07:04 [debug] 2384#0: pass channel s:7 pid:2392 fd:23 to s:6
pid:2391 fd:21
2012/04/25 02:07:04 [debug] 2385#0: channel: -2
2012/04/25 02:07:04 [debug] 2387#0: posted events 00000000
2012/04/25 02:07:04 [debug] 2385#0: posted event 00000000
2012/04/25 02:07:04 [debug] 2384#0: sigsuspend
2012/04/25 02:07:04 [debug] 2385#0: worker cycle
2012/04/25 02:07:04 [debug] 2387#0: worker cycle
2012/04/25 02:07:04 [debug] 2385#0: accept mutex locked
2012/04/25 02:07:04 [debug] 2385#0: epoll timer: -1
2012/04/25 02:07:04 [debug] 2387#0: accept mutex lock failed: 0
2012/04/25 02:07:04 [debug] 2387#0: epoll timer: 500
2012/04/25 02:07:04 [debug] 2386#0: channel: 16
2012/04/25 02:07:04 [debug] 2388#0: worker cycle
2012/04/25 02:07:04 [debug] 2386#0: channel command: 1
2012/04/25 02:07:04 [debug] 2386#0: get channel s:7 pid:2392 fd:17
2012/04/25 02:07:04 [debug] 2388#0: accept mutex lock failed: 0
2012/04/25 02:07:04 [debug] 2388#0: epoll timer: 500
2012/04/25 02:07:04 [debug] 2386#0: channel: -2
2012/04/25 02:07:04 [debug] 2386#0: timer delta: 0
2012/04/25 02:07:04 [debug] 2386#0: posted events 00000000
2012/04/25 02:07:04 [debug] 2386#0: worker cycle
2012/04/25 02:07:04 [debug] 2388#0: epoll: fd:16 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2388#0: channel handler
2012/04/25 02:07:04 [debug] 2386#0: accept mutex lock failed: 0
2012/04/25 02:07:04 [debug] 2386#0: epoll timer: 500
2012/04/25 02:07:04 [debug] 2388#0: channel: 16
2012/04/25 02:07:04 [debug] 2388#0: channel command: 1
2012/04/25 02:07:04 [debug] 2388#0: get channel s:4 pid:2389 fd:10
2012/04/25 02:07:04 [debug] 2389#0: epoll: fd:18 ev:0001 d:08148F4C
2012/04/25 02:07:04 [debug] 2388#0: channel: 16
2012/04/25 02:07:04 [debug] 2389#0: channel handler
2012/04/25 02:07:04 [debug] 2388#0: channel command: 1
2012/04/25 02:07:04 [debug] 2390#0: epoll add event: fd:20 op:1 ev:00000001
2012/04/25 02:07:04 [debug] 2389#0: channel: 16
2012/04/25 02:07:04 [debug] 2388#0: get channel s:5 pid:2390 fd:12
2012/04/25 02:07:04 [debug] 2389#0: channel command: 1
2012/04/25 02:07:04 [debug] 2388#0: channel: 16
2012/04/25 02:07:04 [debug] 2389#0: get channel s:7 pid:2392 fd:14
2012/04/25 02:07:04 [debug] 2388#0: channel command: 1
2012/04/25 02:07:04 [debug] 2389#0: channel: -2
2012/04/25 02:07:04 [debug] 2388#0: get channel s:6 pid:2391 fd:14
2012/04/25 02:07:04 [debug] 2390#0: setproctitle: "nginx: worker process"
2012/04/25 02:07:04 [debug] 2388#0: channel: 16
2012/04/25 02:07:04 [debug] 2389#0: timer delta: 0
2012/04/25 02:07:04 [debug] 2388#0: channel command: 1
2012/04/25 02:07:04 [debug] 2389#0: posted events 00000000
2012/04/25 02:07:04 [debug] 2388#0: get channel s:7 pid:2392 fd:15
2012/04/25 02:07:04 [debug] 2390#0: worker cycle
2012/04/25 02:07:04 [debug] 2389#0: worker cycle

ну и там оно повторяется, скажите куда копать?
500 выскакивает на запуске скрипта инсталятора.

C Уважением, Дмитрий
----------- следущая часть -----------
Вложение в формате HTML было извлечено…
URL: <http://mailman.nginx.org/pipermail/nginx-ru/attachments/20120426/2f14ac5b/attachment-0001.html>


Подробная информация о списке рассылки nginx-ru