Apache перестане обслуговуватися після досягнення параметра MaxClients


11

У мене сервер apache налаштований на робочий MPM наступним чином:

<IfModule mpm_worker_module>
    ServerLimit         20
    ThreadLimit         50
    StartServers        3
    MaxClients          1000
    MinSpareThreads     50
    MaxSpareThreads     200
    ThreadsPerChild     50
    MaxRequestsPerChild 10000
</IfModule>

Сервер щодня приймає близько 2 мільйонів запитів. Коли з'являються запити, сервер apache перестане приймати нове з'єднання (браузер не може підключитися). І процес залишиться у списку процесів. Використання пам'яті становить близько 10%, а процесор - 0%. Здається, сервер apache не зміг переробити процеси, коли слід.

Я знайшов щось, пов’язане з збоєм у журналах помилок:

[Mon Aug 15 12:36:24 2011] [error] child process 11444 still did not exit, sending a SIGKILL
[Mon Aug 15 12:36:24 2011] [error] child process 12090 still did not exit, sending a SIGKILL
[Mon Aug 15 12:36:24 2011] [error] child process 10698 still did not exit, sending a SIGKILL
[Mon Aug 15 12:36:24 2011] [error] child process 12144 still did not exit, sending a SIGKILL
[Mon Aug 15 12:36:24 2011] [error] child process 12032 still did not exit, sending a SIGKILL
[Mon Aug 15 12:36:24 2011] [error] child process 10699 still did not exit, sending a SIGKILL
[Mon Aug 15 12:36:25 2011] [notice] caught SIGTERM, shutting down
[Mon Aug 15 12:37:31 2011] [notice] mod_python: Creating 8 session mutexes based on 20 max processes and 50 max threads.
[Mon Aug 15 12:37:31 2011] [notice] mod_python: using mutex_directory /tmp 
[Mon Aug 15 12:37:31 2011] [notice] Apache/2.2.17 (Ubuntu) mod_python/3.3.1 Python/2.7.1+ mod_ssl/2.2.17 OpenSSL/0.9.8o configured -- resuming normal operations
[Mon Aug 15 15:36:46 2011] [error] server is within MinSpareThreads of MaxClients, consider raising the MaxClients setting
[Mon Aug 15 15:38:48 2011] [error] server reached MaxClients setting, consider raising the MaxClients setting
[Mon Aug 15 16:17:31 2011] [warn] child process 766 still did not exit, sending a SIGTERM
[Mon Aug 15 16:17:31 2011] [warn] child process 767 still did not exit, sending a SIGTERM

Будь-які ідеї? Спасибі!


що ти налаштовуєш? Чи проводите ви якийсь тривалий опитування зі своєю заявою?
regilero

Відповіді:


7

Ви можете перевірити стан свого сервера за допомогою mod_status. Можливо, у вас є з'єднання, які не відключаються, і вони застрягли в стані "відправлення відповіді" (W). Ознайомтеся з цією статтею про те, як діагностувати цей звіт про maxclients httpd та звіт modstatus

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.