URL: https://www.opennet.me/cgi-bin/openforum/vsluhboard.cgi
Форум: vsluhforumID1
Нить номер: 14061
[ Назад ]

Исходное сообщение
"Проблемы FreeBSD 4.4 + Squid-2.4.STABLE4"

Отправлено Bosya , 01-Мрт-02 18:11 
Во время работы создается куча соединений (netstat -an долго мотает). 90% в ожидании чего-то.
В результате буфер TCP переполняется и весь софт (который юзает TCP) начинает глючить и матерится. До этого стоял OOPS. Тот-же эфект. Может кто подскажет в чем проблема?

Содержание

Сообщения в этом обсуждении
"RE: Проблемы FreeBSD 4.4 + Squid-2.4.STABLE4"
Отправлено lavr , 01-Мрт-02 20:51 
>Во время работы создается куча соединений
>(netstat -an долго мотает). 90%
>в ожидании чего-то.
>В результате буфер TCP переполняется и
>весь софт (который юзает TCP)
>начинает глючить и матерится. До
>этого стоял OOPS. Тот-же эфект.
>Может кто подскажет в чем
>проблема?

совет из freebsd maillists:

MAXUSER увеличить и смотреть параметры:

#
# Certain applications can grow to be larger than the 128M limit
# that FreeBSD initially imposes.  Below are some options to
# allow that limit to grow to 256MB, and can be increased further
# with changing the parameters.  MAXDSIZ is the maximum that the
# limit can be set to, and the DFLDSIZ is the default value for
# the limit.  MAXSSIZ is the maximum that the stack limit can be
# set to.  You might want to set the default lower than the max,
# and explicitly set the maximum with a shell command for processes
# that regularly exceed the limit like INND.
#
options         MAXDSIZ="(256*1024*1024)"
options         MAXSSIZ="(256*1024*1024)"
options         DFLDSIZ="(256*1024*1024)"

только правильно их задать, плюс NMBCLUSTER
где-то все это в troubles из faq'а расписано
можно через sysctl


"RE: Проблемы FreeBSD 4.4 + Squid-2.4.STABLE4"
Отправлено lavr , 03-Мрт-02 20:58 
>>Во время работы создается куча соединений
>>(netstat -an долго мотает). 90%
>>в ожидании чего-то.
>>В результате буфер TCP переполняется и
>>весь софт (который юзает TCP)
>>начинает глючить и матерится. До
>>этого стоял OOPS. Тот-же эфект.
>>Может кто подскажет в чем
>>проблема?
>
>совет из freebsd maillists:
>
>MAXUSER увеличить и смотреть параметры:
>
>#
># Certain applications can grow to
>be larger than the 128M
>limit
># that FreeBSD initially imposes.  
>Below are some options to
>
># allow that limit to grow
>to 256MB, and can be
>increased further
># with changing the parameters.  
>MAXDSIZ is the maximum that
>the
># limit can be set to,
>and the DFLDSIZ is the
>default value for
># the limit.  MAXSSIZ is
>the maximum that the stack
>limit can be
># set to.  You might
>want to set the default
>lower than the max,
># and explicitly set the maximum
>with a shell command for
>processes
># that regularly exceed the limit
>like INND.
>#
>options      
>   MAXDSIZ="(256*1024*1024)"
>options      
>   MAXSSIZ="(256*1024*1024)"
>options      
>   DFLDSIZ="(256*1024*1024)"
>
>только правильно их задать, плюс NMBCLUSTER
>
>где-то все это в troubles из
>faq'а расписано
>можно через sysctl

собирать СТРОГО без оптимизации или с -O, не более


"RE: Проблемы FreeBSD 4.4 + Squid-2.4.STABLE4"
Отправлено Bosya , 04-Мрт-02 16:23 
Спасибо, я поробую разобраться, хотя не совсем понял ответ :(