ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Модуль mp4: 500 Internal Server, pread() failed (22: Invalid argument),


  • To: nginx-ru@xxxxxxxxx
  • Subject: Модуль mp4: 500 Internal Server, pread() failed (22: Invalid argument),
  • From: Андрей Василишин <a.vasilishin@xxxxxx>
  • Date: Thu, 06 Oct 2011 18:50:27 +0300
  • Authentication-results: mail1.kpi.ua; auth=pass (auth_dovecot_plain) smtp.mail=andron@xxxxxx

Здравствуйте!
С чем может быть связана ошибка и как ее лечить?


# uname -a
Linux host-31 2.6.32-5-amd64 #1 SMP Fri Sep 9 20:23:16 UTC 2011 x86_64 GNU/Linux


# nginx -V
nginx: nginx version: nginx/1.1.4
nginx: built by gcc 4.6.1 (Debian 4.6.1-13)
nginx: configure arguments: --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-log-path=/var/log/nginx/access.log --http-proxy-temp-path=/var/lib/nginx/proxy --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-debug --with-file-aio --with-http_flv_module --with-http_mp4_module --with-http_geoip_module --with-http_realip_module --with-http_secure_link_module --with-http_stub_status_module --without-http_memcached_module --without-http_scgi_module --without-http_split_clients_module --without-http_uwsgi_module

# cat /etc/nginx/sites-enabled/s1.site.net.conf
    server {
        listen  213.186.112.164:80;
        server_name  s1.site.net;
        access_log off;
#        access_log  /var/log/nginx/s1.site.net.access.log  main;
        error_log   /var/log/nginx/s1.site.net.error.log;
        location / {
            proxy_pass         http://127.0.0.1:8080/;
            proxy_redirect     off;

            proxy_set_header   Host             $host;
            proxy_set_header   X-Real-IP        $remote_addr;
            proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;

            client_max_body_size       10m;
            client_body_buffer_size    128k;

            proxy_connect_timeout      20;
            proxy_send_timeout         20;
            proxy_read_timeout         20;
            proxy_buffering off;

       }
        location ~ \.php$  {
            proxy_pass         http://127.0.0.1:8080;
            proxy_redirect     off;

            proxy_set_header   Host             $host;
            proxy_set_header   X-Real-IP        $remote_addr;
            proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;

            client_max_body_size       10m;
            client_body_buffer_size    128k;

            proxy_connect_timeout      20;
            proxy_send_timeout         20;
            proxy_read_timeout         20;
            proxy_buffering off;

       }
       location /flv {
                root    /var/www/;
                open_file_cache max=3000 inactive=120s;
                open_file_cache_valid 30s;
                open_file_cache_min_uses 2;
                open_file_cache_errors off;
                try_files
                        /s1.site.net-st14$uri
                        /s1.site.net-st13$uri
                        /s1.site.net-st12$uri
                        /s1.site.net-st11$uri
                        /s1.site.net-st10$uri
                        /s1.site.net-st9$uri
                        /s1.site.net-st7$uri
                        /s1.site.net-st8$uri
                        /s1.site.net-st1$uri
                        /s1.site.net-st2$uri
                        /s1.site.net-st3$uri
                        /s1.site.net-st4$uri
                        /s1.site.net-st5$uri
                        /s1.site.net-st6$uri
                          =404;
                internal;
                flv;
                output_buffers  1 1m;
                aio             on;
                directio  4096;
#               limit_rate_after  20m;
#                limit_rate   1m;
         }
       location /mp4 {
                root    /var/www/;
                open_file_cache max=3000 inactive=120s;
                open_file_cache_valid 30s;
                open_file_cache_min_uses 2;
                open_file_cache_errors off;
                try_files
                        /s1.site.net-st14$uri
                        /s1.site.net-st13$uri
                        /s1.site.net-st12$uri
                        /s1.site.net-st11$uri
                        /s1.site.net-st10$uri
                        /s1.site.net-st9$uri
                        /s1.site.net-st7$uri
                        /s1.site.net-st8$uri
                        /s1.site.net-st1$uri
                        /s1.site.net-st2$uri
                        /s1.site.net-st3$uri
                        /s1.site.net-st4$uri
                        /s1.site.net-st5$uri
                        /s1.site.net-st6$uri
                          =404;
                internal;
                mp4;
                mp4_buffer_size    1m;    # default 512k
                mp4_max_buffer_size  10m;   # default 5m
                output_buffers  1 1m;
                aio             on;
                directio  4096;
#               limit_rate_after  20m;
#                limit_rate   1m;
         }
       location /nginx_status {
            stub_status on;
            access_log   off;
        }

    }


# cat /var/log/nginx/s1.site.net.error.log

2011/10/06 18:42:45 [debug] 18889#0: *49 accept: 77.47.201.94 fd:22
2011/10/06 18:42:45 [debug] 18889#0: *49 event timer add: 22: 60000:1317915825326 2011/10/06 18:42:45 [debug] 18889#0: *49 epoll add event: fd:22 op:1 ev:80000001
2011/10/06 18:42:45 [debug] 18889#0: *49 post event 00007F8495BA30E0
2011/10/06 18:42:45 [debug] 18889#0: *49 delete posted event 00007F8495BA30E0
2011/10/06 18:42:45 [debug] 18889#0: *49 malloc: 0000000000767E10:1264
2011/10/06 18:42:45 [debug] 18889#0: *49 posix_memalign: 0000000000768900:256 @16
2011/10/06 18:42:45 [debug] 18889#0: *49 malloc: 0000000000768310:1024
2011/10/06 18:42:45 [debug] 18889#0: *49 posix_memalign: 0000000000769CB0:4096 @16
2011/10/06 18:42:45 [debug] 18889#0: *49 http process request line
2011/10/06 18:42:45 [debug] 18889#0: *49 recv: fd:22 579 of 1024
2011/10/06 18:42:45 [debug] 18889#0: *49 http request line: "GET /mp/2d44d93c1e913222a6803f8e4c260a1d/Povtoryaushie.mp4?start=0 HTTP/1.1" 2011/10/06 18:42:45 [debug] 18889#0: *49 http uri: "/mp/2d44d93c1e913222a6803f8e4c260a1d/Povtoryaushie.mp4"
2011/10/06 18:42:45 [debug] 18889#0: *49 http args: "start=0"
2011/10/06 18:42:45 [debug] 18889#0: *49 http exten: "mp4"
2011/10/06 18:42:45 [debug] 18889#0: *49 http process request header line
2011/10/06 18:42:45 [debug] 18889#0: *49 http header: "Host: s1.site.net"
2011/10/06 18:42:45 [debug] 18889#0: *49 http header: "User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:7.0.1) Gecko/20100101 Firefox/7.0.1" 2011/10/06 18:42:45 [debug] 18889#0: *49 http header: "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" 2011/10/06 18:42:45 [debug] 18889#0: *49 http header: "Accept-Language: uk,ru;q=0.8,en-us;q=0.5,en;q=0.3" 2011/10/06 18:42:45 [debug] 18889#0: *49 http header: "Accept-Encoding: gzip, deflate" 2011/10/06 18:42:45 [debug] 18889#0: *49 http header: "Accept-Charset: windows-1251,utf-8;q=0.7,*;q=0.7" 2011/10/06 18:42:45 [debug] 18889#0: *49 http header: "Connection: keep-alive" 2011/10/06 18:42:45 [debug] 18889#0: *49 http header: "Cookie: __utma=103814535.333769322.1317911110.1317911110.1317911110.1; __utmc=103814535; __utmz=103814535.1317911110.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)"
2011/10/06 18:42:45 [debug] 18889#0: *49 http header done
2011/10/06 18:42:45 [debug] 18889#0: *49 event timer del: 22: 1317915825326
2011/10/06 18:42:45 [debug] 18889#0: *49 generic phase: 0
2011/10/06 18:42:45 [debug] 18889#0: *49 rewrite phase: 1
2011/10/06 18:42:45 [debug] 18889#0: *49 test location: "/"
2011/10/06 18:42:45 [debug] 18889#0: *49 test location: "mp4"
2011/10/06 18:42:45 [debug] 18889#0: *49 test location: "flv"
2011/10/06 18:42:45 [debug] 18889#0: *49 test location: ~ "\.php$"
2011/10/06 18:42:45 [debug] 18889#0: *49 using configuration "/"
2011/10/06 18:42:45 [debug] 18889#0: *49 http cl:-1 max:10485760
2011/10/06 18:42:45 [debug] 18889#0: *49 rewrite phase: 3
2011/10/06 18:42:45 [debug] 18889#0: *49 post rewrite phase: 4
2011/10/06 18:42:45 [debug] 18889#0: *49 generic phase: 5
2011/10/06 18:42:45 [debug] 18889#0: *49 generic phase: 6
2011/10/06 18:42:45 [debug] 18889#0: *49 generic phase: 7
2011/10/06 18:42:45 [debug] 18889#0: *49 access phase: 8
2011/10/06 18:42:45 [debug] 18889#0: *49 access phase: 9
2011/10/06 18:42:45 [debug] 18889#0: *49 post access phase: 10
2011/10/06 18:42:45 [debug] 18889#0: *49 try files phase: 11
2011/10/06 18:42:45 [debug] 18889#0: *49 http init upstream, client timer: 0
2011/10/06 18:42:45 [debug] 18889#0: *49 epoll add event: fd:22 op:3 ev:80000005 2011/10/06 18:42:45 [debug] 18889#0: *49 posix_memalign: 000000000075E000:4096 @16
2011/10/06 18:42:45 [debug] 18889#0: *49 http script copy: "Host: "
2011/10/06 18:42:45 [debug] 18889#0: *49 http script var: "s1.site.net"
2011/10/06 18:42:45 [debug] 18889#0: *49 http script copy: "
"
2011/10/06 18:42:45 [debug] 18889#0: *49 http script copy: "X-Real-IP: "
2011/10/06 18:42:45 [debug] 18889#0: *49 http script var: "77.47.201.94"
2011/10/06 18:42:45 [debug] 18889#0: *49 http script copy: "
"
2011/10/06 18:42:45 [debug] 18889#0: *49 http script copy: "X-Forwarded-For: "
2011/10/06 18:42:45 [debug] 18889#0: *49 http script var: "77.47.201.94"
2011/10/06 18:42:45 [debug] 18889#0: *49 http script copy: "
"
2011/10/06 18:42:45 [debug] 18889#0: *49 http script copy: "Connection: close
"
2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:7.0.1) Gecko/20100101 Firefox/7.0.1" 2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" 2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "Accept-Language: uk,ru;q=0.8,en-us;q=0.5,en;q=0.3" 2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "Accept-Encoding: gzip, deflate" 2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "Accept-Charset: windows-1251,utf-8;q=0.7,*;q=0.7" 2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "Cookie: __utma=103814535.333769322.1317911110.1317911110.1317911110.1; __utmc=103814535; __utmz=103814535.1317911110.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)"
2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header:
"GET /mp/2d44d93c1e913222a6803f8e4c260a1d/Povtoryaushie.mp4?start=0 HTTP/1.0
Host: s1.site.net
X-Real-IP: 77.47.201.94
X-Forwarded-For: 77.47.201.94
Connection: close
User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:7.0.1) Gecko/20100101 Firefox/7.0.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: uk,ru;q=0.8,en-us;q=0.5,en;q=0.3
Accept-Encoding: gzip, deflate
Accept-Charset: windows-1251,utf-8;q=0.7,*;q=0.7
Cookie: __utma=103814535.333769322.1317911110.1317911110.1317911110.1; __utmc=103814535; __utmz=103814535.1317911110.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)

"
2011/10/06 18:42:45 [debug] 18889#0: *49 http cleanup add: 000000000075E298
2011/10/06 18:42:45 [debug] 18889#0: *49 get rr peer, try: 1
2011/10/06 18:42:45 [debug] 18889#0: *49 socket 24
2011/10/06 18:42:45 [debug] 18889#0: *49 epoll add connection: fd:24 ev:80000005 2011/10/06 18:42:45 [debug] 18889#0: *49 connect to 127.0.0.1:8080, fd:24 #50
2011/10/06 18:42:45 [debug] 18889#0: *49 http upstream connect: -2
2011/10/06 18:42:45 [debug] 18889#0: *49 posix_memalign: 0000000000768720:128 @16 2011/10/06 18:42:45 [debug] 18889#0: *49 event timer add: 24: 20000:1317915785335 2011/10/06 18:42:45 [debug] 18889#0: *49 http finalize request: -4, "/mp/2d44d93c1e913222a6803f8e4c260a1d/Povtoryaushie.mp4?start=0" a:1, c:2
2011/10/06 18:42:45 [debug] 18889#0: *49 http request count:2 blk:0
2011/10/06 18:42:45 [debug] 18889#0: *49 post event 00007F84955230E0
2011/10/06 18:42:45 [debug] 18889#0: *49 post event 00007F8495523148
2011/10/06 18:42:45 [debug] 18889#0: *49 delete posted event 00007F8495523148 2011/10/06 18:42:45 [debug] 18889#0: *49 http upstream request: "/mp/2d44d93c1e913222a6803f8e4c260a1d/Povtoryaushie.mp4?start=0"
2011/10/06 18:42:45 [debug] 18889#0: *49 http upstream send request handler
2011/10/06 18:42:45 [debug] 18889#0: *49 http upstream send request
2011/10/06 18:42:45 [debug] 18889#0: *49 chain writer buf fl:1 s:630
2011/10/06 18:42:45 [debug] 18889#0: *49 chain writer in: 000000000075E2D0
2011/10/06 18:42:45 [debug] 18889#0: *49 writev: 630
2011/10/06 18:42:45 [debug] 18889#0: *49 chain writer out: 0000000000000000
2011/10/06 18:42:45 [debug] 18889#0: *49 event timer del: 24: 1317915785335
2011/10/06 18:42:45 [debug] 18889#0: *49 event timer add: 24: 20000:1317915785335 2011/10/06 18:42:45 [debug] 18889#0: *49 delete posted event 00007F84955230E0 2011/10/06 18:42:45 [debug] 18889#0: *49 http run request: "/mp/2d44d93c1e913222a6803f8e4c260a1d/Povtoryaushie.mp4?start=0" 2011/10/06 18:42:45 [debug] 18889#0: *49 http upstream check client, write event:1, "/mp/2d44d93c1e913222a6803f8e4c260a1d/Povtoryaushie.mp4" 2011/10/06 18:42:45 [debug] 18889#0: *49 http upstream recv(): -1 (11: Resource temporarily unavailable)
2011/10/06 18:42:45 [debug] 18889#0: *49 post event 00007F8495BA3148
2011/10/06 18:42:45 [debug] 18889#0: *49 post event 00007F8495523148
2011/10/06 18:42:45 [debug] 18889#0: *49 delete posted event 00007F8495523148 2011/10/06 18:42:45 [debug] 18889#0: *49 http upstream request: "/mp/2d44d93c1e913222a6803f8e4c260a1d/Povtoryaushie.mp4?start=0"
2011/10/06 18:42:45 [debug] 18889#0: *49 http upstream dummy handler
2011/10/06 18:42:45 [debug] 18889#0: *49 delete posted event 00007F8495BA3148 2011/10/06 18:42:45 [debug] 18889#0: *49 http upstream request: "/mp/2d44d93c1e913222a6803f8e4c260a1d/Povtoryaushie.mp4?start=0"
2011/10/06 18:42:45 [debug] 18889#0: *49 http upstream process header
2011/10/06 18:42:45 [debug] 18889#0: *49 malloc: 0000000000754C70:4096
2011/10/06 18:42:45 [debug] 18889#0: *49 recv: fd:24 228 of 4096
2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy status 200 "200 OK"
2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "Date: Thu, 06 Oct 2011 15:42:45 GMT" 2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "Server: Apache/2.2.16 (Debian)" 2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "X-Powered-By: PHP/5.3.8-2" 2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "X-Accel-Redirect: /mp4/Povtoryaushie.mp4?start=0" 2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "Content-Length: 0" 2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "Connection: close" 2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header: "Content-Type: video/mp4"
2011/10/06 18:42:45 [debug] 18889#0: *49 http proxy header done
2011/10/06 18:42:45 [debug] 18889#0: *49 finalize http upstream request: -5
2011/10/06 18:42:45 [debug] 18889#0: *49 finalize http proxy request
2011/10/06 18:42:45 [debug] 18889#0: *49 free rr peer 1 0
2011/10/06 18:42:45 [debug] 18889#0: *49 close http upstream connection: 24
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 0000000000768720, unused: 48
2011/10/06 18:42:45 [debug] 18889#0: *49 event timer del: 24: 1317915785335
2011/10/06 18:42:45 [debug] 18889#0: *49 reusable connection: 0
2011/10/06 18:42:45 [debug] 18889#0: *49 internal redirect: "/mp4/Povtoryaushie.mp4?start=0"
2011/10/06 18:42:45 [debug] 18889#0: *49 rewrite phase: 1
2011/10/06 18:42:45 [debug] 18889#0: *49 test location: "/"
2011/10/06 18:42:45 [debug] 18889#0: *49 test location: "mp4"
2011/10/06 18:42:45 [debug] 18889#0: *49 test location: ~ "\.php$"
2011/10/06 18:42:45 [debug] 18889#0: *49 using configuration "/mp4"
2011/10/06 18:42:45 [debug] 18889#0: *49 http cl:-1 max:2102394880
2011/10/06 18:42:45 [debug] 18889#0: *49 rewrite phase: 3
2011/10/06 18:42:45 [debug] 18889#0: *49 post rewrite phase: 4
2011/10/06 18:42:45 [debug] 18889#0: *49 generic phase: 5
2011/10/06 18:42:45 [debug] 18889#0: *49 generic phase: 6
2011/10/06 18:42:45 [debug] 18889#0: *49 generic phase: 7
2011/10/06 18:42:45 [debug] 18889#0: *49 access phase: 8
2011/10/06 18:42:45 [debug] 18889#0: *49 access phase: 9
2011/10/06 18:42:45 [debug] 18889#0: *49 post access phase: 10
2011/10/06 18:42:45 [debug] 18889#0: *49 try files phase: 11
2011/10/06 18:42:45 [debug] 18889#0: *49 http script copy: "/s1.site.net-st14" 2011/10/06 18:42:45 [debug] 18889#0: *49 http script var: "/mp4/Povtoryaushie.mp4" 2011/10/06 18:42:45 [debug] 18889#0: *49 trying to use file: "/s1.site.net-st14/mp4/Povtoryaushie.mp4" "/var/www/s1.site.net-st14/mp4/Povtoryaushie.mp4"
2011/10/06 18:42:45 [debug] 18889#0: *49 add cleanup: 000000000075E5C0
2011/10/06 18:42:45 [debug] 18889#0: *49 retest open file: /var/www/s1.site.net-st14/mp4/Povtoryaushie.mp4, fd:23, c:0, e:0 2011/10/06 18:42:45 [debug] 18889#0: *49 cached open file: /var/www/s1.site.net-st14/mp4/Povtoryaushie.mp4, fd:23, c:1, e:0, u:31 2011/10/06 18:42:45 [debug] 18889#0: *49 try file uri: "/s1.site.net-st14/mp4/Povtoryaushie.mp4"
2011/10/06 18:42:45 [debug] 18889#0: *49 http set discard body
2011/10/06 18:42:45 [debug] 18889#0: *49 http mp4 filename: "/var/www/s1.site.net-st14/mp4/Povtoryaushie.mp4"
2011/10/06 18:42:45 [debug] 18889#0: *49 add cleanup: 000000000075E630
2011/10/06 18:42:45 [debug] 18889#0: *49 cached open file: /var/www/s1.site.net-st14/mp4/Povtoryaushie.mp4, fd:23, c:2, e:0, u:32
2011/10/06 18:42:45 [debug] 18889#0: *49 malloc: 0000000000755C80:6144
2011/10/06 18:42:45 [debug] 18889#0: *49 mp4 start:0
2011/10/06 18:42:45 [debug] 18889#0: *49 malloc: 0000000000778E90:1048576
2011/10/06 18:42:45 [debug] 18889#0: *49 read: 23, 0000000000778E90, 1048576, 0 2011/10/06 18:42:45 [crit] 18889#0: *49 pread() "/var/www/s1.site.net-st14/mp4/Povtoryaushie.mp4" failed (22: Invalid argument), client: 77.47.201.94, server: s1.site.net, request: "GET /mp/2d44d93c1e913222a6803f8e4c260a1d/Povtoryaushie.mp4?start=0 HTTP/1.1", upstream: "http://127.0.0.1:8080/mp/2d44d93c1e913222a6803f8e4c260a1d/Povtoryaushie.mp4?start=0";, host: "s1.site.net"
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 0000000000778E90
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 0000000000755C80
2011/10/06 18:42:45 [debug] 18889#0: *49 http finalize request: 500, "/s1.site.net-st14/mp4/Povtoryaushie.mp4?start=0" a:1, c:2 2011/10/06 18:42:45 [debug] 18889#0: *49 http special response: 500, "/s1.site.net-st14/mp4/Povtoryaushie.mp4?start=0"
2011/10/06 18:42:45 [debug] 18889#0: *49 http set discard body
2011/10/06 18:42:45 [debug] 18889#0: *49 HTTP/1.1 500 Internal Server Error
Server: nginx/1.1.4
Date: Thu, 06 Oct 2011 15:42:45 GMT
Content-Type: text/html
Content-Length: 192
Connection: close

2011/10/06 18:42:45 [debug] 18889#0: *49 write new buf t:1 f:0 000000000075E6D8, pos 000000000075E6D8, size: 161 file: 0, size: 0
2011/10/06 18:42:45 [debug] 18889#0: *49 http write filter: l:0 f:0 s:161
2011/10/06 18:42:45 [debug] 18889#0: *49 http output filter "/s1.site.net-st14/mp4/Povtoryaushie.mp4?start=0" 2011/10/06 18:42:45 [debug] 18889#0: *49 http copy filter: "/s1.site.net-st14/mp4/Povtoryaushie.mp4?start=0" 2011/10/06 18:42:45 [debug] 18889#0: *49 http postpone filter "/s1.site.net-st14/mp4/Povtoryaushie.mp4?start=0" 000000000075E8B0 2011/10/06 18:42:45 [debug] 18889#0: *49 write old buf t:1 f:0 000000000075E6D8, pos 000000000075E6D8, size: 161 file: 0, size: 0 2011/10/06 18:42:45 [debug] 18889#0: *49 write new buf t:0 f:0 0000000000000000, pos 0000000000687AE0, size: 140 file: 0, size: 0 2011/10/06 18:42:45 [debug] 18889#0: *49 write new buf t:0 f:0 0000000000000000, pos 0000000000686A80, size: 52 file: 0, size: 0
2011/10/06 18:42:45 [debug] 18889#0: *49 http write filter: l:1 f:0 s:353
2011/10/06 18:42:45 [debug] 18889#0: *49 http write filter limit 0
2011/10/06 18:42:45 [debug] 18889#0: *49 writev: 353
2011/10/06 18:42:45 [debug] 18889#0: *49 http write filter 0000000000000000
2011/10/06 18:42:45 [debug] 18889#0: *49 http copy filter: 0 "/s1.site.net-st14/mp4/Povtoryaushie.mp4?start=0" 2011/10/06 18:42:45 [debug] 18889#0: *49 http finalize request: 0, "/s1.site.net-st14/mp4/Povtoryaushie.mp4?start=0" a:1, c:2
2011/10/06 18:42:45 [debug] 18889#0: *49 http request count:2 blk:0
2011/10/06 18:42:45 [debug] 18889#0: *49 http finalize request: -4, "/s1.site.net-st14/mp4/Povtoryaushie.mp4?start=0" a:1, c:1 2011/10/06 18:42:45 [debug] 18889#0: *49 event timer add: 22: 5000:1317915770336
2011/10/06 18:42:45 [debug] 18889#0: *49 http lingering close handler
2011/10/06 18:42:45 [debug] 18889#0: *49 recv: fd:22 -1 of 4096
2011/10/06 18:42:45 [debug] 18889#0: *49 recv() not ready (11: Resource temporarily unavailable)
2011/10/06 18:42:45 [debug] 18889#0: *49 lingering read: -2
2011/10/06 18:42:45 [debug] 18889#0: *49 event timer: 22, old: 1317915770336, new: 1317915770336
2011/10/06 18:42:45 [debug] 18889#0: *49 post event 00007F84955230E0
2011/10/06 18:42:45 [debug] 18889#0: *49 delete posted event 00007F84955230E0
2011/10/06 18:42:45 [debug] 18889#0: *49 http empty handler
2011/10/06 18:42:45 [debug] 18889#0: *49 post event 00007F84955230E0
2011/10/06 18:42:45 [debug] 18889#0: *49 delete posted event 00007F84955230E0
2011/10/06 18:42:45 [debug] 18889#0: *49 http empty handler
2011/10/06 18:42:45 [debug] 18889#0: *49 post event 00007F8495BA30E0
2011/10/06 18:42:45 [debug] 18889#0: *49 post event 00007F84955230E0
2011/10/06 18:42:45 [debug] 18889#0: *49 delete posted event 00007F84955230E0
2011/10/06 18:42:45 [debug] 18889#0: *49 http empty handler
2011/10/06 18:42:45 [debug] 18889#0: *49 delete posted event 00007F8495BA30E0
2011/10/06 18:42:45 [debug] 18889#0: *49 http lingering close handler
2011/10/06 18:42:45 [debug] 18889#0: *49 recv: fd:22 0 of 4096
2011/10/06 18:42:45 [debug] 18889#0: *49 lingering read: 0
2011/10/06 18:42:45 [debug] 18889#0: *49 http request count:1 blk:0
2011/10/06 18:42:45 [debug] 18889#0: *49 http close request
2011/10/06 18:42:45 [debug] 18889#0: *49 http log handler
2011/10/06 18:42:45 [debug] 18889#0: *49 run cleanup: 000000000075E630
2011/10/06 18:42:45 [debug] 18889#0: *49 close cached open file: /var/www/s1.site.net-st14/mp4/Povtoryaushie.mp4, fd:23, c:1, u:32, 0
2011/10/06 18:42:45 [debug] 18889#0: *49 run cleanup: 000000000075E5C0
2011/10/06 18:42:45 [debug] 18889#0: *49 close cached open file: /var/www/s1.site.net-st14/mp4/Povtoryaushie.mp4, fd:23, c:0, u:32, 0
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 0000000000000000
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 0000000000000000
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 0000000000754C70
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 0000000000769CB0, unused: 2
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 000000000075E000, unused: 1808
2011/10/06 18:42:45 [debug] 18889#0: *49 close http connection: 22
2011/10/06 18:42:45 [debug] 18889#0: *49 event timer del: 22: 1317915770336
2011/10/06 18:42:45 [debug] 18889#0: *49 reusable connection: 0
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 0000000000768310
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 0000000000767E10
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 00000000007506A0, unused: 8
2011/10/06 18:42:45 [debug] 18889#0: *49 free: 0000000000768900, unused: 128

--
WBR, Andrey Vasilishin CDIG1-UANIC, CDIG1-RIPE

_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru


 




Copyright © Lexa Software, 1996-2009.