Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Upstream timed out
- To: nginx-ru@xxxxxxxxx
- Subject: Re: Upstream timed out
- From: umask <umask@xxxxxxxxx>
- Date: Thu, 06 Sep 2007 12:49:19 +0400
- In-reply-to: 1660000000220873767
- References: 1660000000220873767
У меня сегодня такое явление случилось (с таймаутом), когда выполнение одного
php-скрипта вызывало segmentation fault.
Т.е. все работало, скрипты выполнялись, fastcgi-сервер не падал.
Но когда через nginx запрашивался проблемный php'шник, то nginx возвращал 502 и
в лог сразу же писал такое:
2007/09/06 11:22:02 [error] 15894#0: *22907 upstream timed out (110: Connection
timed out) while reading response header from upstream, client: 127.0.0.1,
server: XXX, URL: "/XX.php", upstream: "fastcgi://127.0.0.1:9000", host:
"127.0.0.1"
2007/09/06 11:22:37 [error] 15894#0: *22701 upstream timed out (110: Connection
timed out) while reading upstream, client: 127.0.0.1, server: XXX, URL:
"/XX.php", upstream: "fastcgi://127.0.0.1:9000", host: "127.0.0.1"
2007/09/06 11:23:01 [error] 15894#0: *23092 upstream timed out (110: Connection
timed out) while reading response header from upstream, client: 127.0.0.1,
server: XXX, URL: "XX.php", upstream: "fastcgi://127.0.0.1:9000", host:
"127.0.0.1"
2007/09/06 11:24:01 [error] 15894#0: *23280 upstream timed out (110: Connection
timed out) while reading response header from upstream, client: 127.0.0.1,
server: XXX, URL: "XX.php", upstream: "fastcgi://127.0.0.1:9000", host:
"127.0.0.1"
06.09.07, 12:12, Vladimir Shiray (vlad@xxxxxxxx):
> Добрый день,
> в error.log постоянно попадают ошибки, типа:
> "upstream timed out (110: Connection timed out) while reading upstream"
> После очистки лога и перезапуска nginx, на 150000 подключений
> получил 426 таких сообщений.
> Сам сервер запущен внутри OpenVZ окружения (CentOS 4.5 32bit). Перед
> последними
> проверками, окружение было остановлено и запущено снова.
> В /proc/user_beancounters и в логах ядра (2.6.18-ovz028stab039.1-smp)
> все "чисто".
> У сервера есть три upstream, один докальный в "соседнем" VPS и два удаленных
> (rtt: 150ms и 60ms). Ошибки присутствуют для каждого из них.
> ------
> nginx-0.5.29 (c двумя патчами: patch-0.6.2.2, patch-0.6.5.1)
> Часть кнфигурационного файла, для nginx:
> worker_processes 3;
> events {
> worker_connections 500;
> }
> http {
> client_max_body_size 32m;
> keepalive_timeout 75;
> optimize_server_names off;
> proxy_buffering off;
> proxy_connect_timeout 60;
> proxy_read_timeout 120;
> proxy_send_timeout 90;
> send_timeout 90;
|