Во время работы создается куча соединений (netstat -an долго мотает). 90% в ожидании чего-то.
В результате буфер TCP переполняется и весь софт (который юзает TCP) начинает глючить и матерится. До этого стоял OOPS. Тот-же эфект. Может кто подскажет в чем проблема?
>Во время работы создается куча соединений
>(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
>>Во время работы создается куча соединений
>>(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, не более
Спасибо, я поробую разобраться, хотя не совсем понял ответ :(