Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
sendfile() failed (9: Bad file descriptor) while sending request to upstream
- To: nginx-ru@xxxxxxxxx
- Subject: sendfile() failed (9: Bad file descriptor) while sending request to upstream
- From: "john2do" <nginx-forum@xxxxxxxx>
- Date: Thu, 12 Aug 2010 07:00:39 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mickey.jlkhosting.com; s=x; h=Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To:Date; bh=pk+RHUoiqkkPjoXNc0P6KJz1O6yh6XkQnQuzjBZdEfo=; b=A+G0V6uymtRDIT2/sJBLU8gqZamn6Rttz43GkGNPyfOq/OQGgydCSNSw6hmD5DE4L2wWg6Lp+HSj1xAp7mQoac+RF6W4kfdJU4fqO7jPEIvkFoKjlk4tA7Y7Tnno0d22;
nginx/0.7.65
имеем в логах такого рода ошибки.
sendfile() failed (9: Bad file descriptor) while sending request to
upstream, client: x.x.x.x, server: foo.ru, request: "POST
/edit/19067.php HTTP/1.1", subrequest: "/service/cache.php", upstream:
"http://10.0.1.42:8200/service/cache.php?method=ssi&cacheid=4409", host:
"foo.ru", referrer: "http://foo.ru/edit/19067.php"
к сожалению воспроизвести
неполучилось, но есть предположение,
что перед отправкой суб-запроса
переданный в форме файл уже почищен. в
связи с этим вот такая вот ситуация
складывается.
локейшин, который обрабатывает сси
следующий:
location ^~ /service/ {
default_type text/html;
error_page 404 502 504 = @dynamic;
if ( $request_method = POST ) {
return 404;
}
if ( $arg_cacheid = "" ) {
return 404;
}
set $memcached_key "cache|$arg_cacheid";
memcached_connect_timeout 2;
memcached_read_timeout 5;
memcached_send_timeout 5;
memcached_pass @cache;
}
баг?
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,118976,118976#msg-118976
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|