У меня есть небольшое приложение CGI, обслуживаемое через Apache2, и я хотел бы уменьшить количество дочерних процессов, поддерживаемых Apache2.
Вот конфигурация (очень простая), которая у меня есть для mpm_prefork.conf
:
$ cat /etc/apache2/mods-enabled/mpm_prefork.conf
<IfModule mpm_prefork_module>
StartServers 1
</IfModule>
Вот что я нашел относительно StartServers
:
В
StartServers
Директива устанавливает количество дочерних серверных процессов, создаваемых при запуске.
Вот количество процессов, которые поддерживает Apache:
$ /etc/init.d/apache2 status
apache2.service - LSB: Apache2 web server
Loaded: loaded (/etc/init.d/apache2)
Drop-In: /lib/systemd/system/apache2.service.d
└─forking.conf
Active: active (running) since mar 2018-03-06 10:16:36 CST; 16min ago
Process: 9905 ExecStop=/etc/init.d/apache2 stop (code=exited, status=0/SUCCESS)
Process: 10117 ExecReload=/etc/init.d/apache2 reload (code=exited, status=0/SUCCESS)
Process: 9928 ExecStart=/etc/init.d/apache2 start (code=exited, status=0/SUCCESS)
CGroup: /system.slice/apache2.service
├─ 9942 /usr/sbin/apache2 -k start
├─10150 /usr/sbin/apache2 -k start
├─10151 /usr/sbin/apache2 -k start
└─10152 /usr/sbin/apache2 -k start
mar 06 10:16:36 server001 apache2[9928]: Starting web server: apache2.
mar 06 10:16:36 server001 systemd[1]: Started LSB: Apache2 web server.
mar 06 10:26:12 server001 systemd[1]: Reloading LSB: Apache2 web server.
mar 06 10:26:12 server001 apache2[10050]: Reloading web server: apache2.
mar 06 10:26:12 server001 systemd[1]: Reloaded LSB: Apache2 web server.
mar 06 10:33:29 server001 systemd[1]: Reloading LSB: Apache2 web server.
mar 06 10:33:29 server001 apache2[10117]: Reloading web server: apache2.
mar 06 10:33:29 server001 systemd[1]: Reloaded LSB: Apache2 web server.
Каждый дочерний процесс потребляет что-то более 50 МБ, и, честно говоря, для того типа приложения, которое у меня есть, было бы достаточно только одного дочернего процесса.
$ ps -ylC apache2
S UID PID PPID C PRI NI RSS SZ WCHAN TTY TIME CMD
S 0 9942 1 0 80 0 25976 56792 - ? 00:00:00 apache2
S 33 10150 9942 0 80 0 8416 36091 - ? 00:00:00 apache2
S 33 10151 9942 0 80 0 8864 36097 - ? 00:00:00 apache2
S 33 10152 9942 0 80 0 8716 56798 - ? 00:00:00 apache2
Вот мои вопросы:
Я немного новичок в Apache2. Так что, пожалуйста, проявите терпение к моим сомнениям.
По вашему запросу вы можете использовать настройку, чтобы ограничить количество процессов в prefork до двух:
Startservers 1
MinSpareServers 1
MaxSpareServers 2
MaxRequestWorkers 2
ServerLimit 2
MaxconnectionsPerChild 0