Подсчёт количества httpd-процессов

Обсуждение настройки и работы сервисов, резервирования, сетевых настроек и вопросов безопасности ОС для молодых и начинающих системных администраторов.

Модератор: SLEDopit

Ответить
Аватара пользователя
lgar
Сообщения: 117
ОС: Ubuntu

Подсчёт количества httpd-процессов

Сообщение lgar »

В сети есть информация о том, как правильно подобрать MaxClient, хотелось бы понять, как правильно посчитать MinSpaceServers, Startservers.
Спасибо сказали:
Thug
Сообщения: 200
Контактная информация:

Re: Подсчёт количества httpd-процессов

Сообщение Thug »

Быстрый гуглинг дал такую статью: http://linuxstuffs.wordpress.com/apache-optimization/
Минимум рекомендуется оставлять по дефолту, максимум при большой нагрузке и наличии памяти в количестве можно чуть увеличить.
Страйкбол - игра админов :)
Спасибо сказали:
Аватара пользователя
SLEDopit
Модератор
Сообщения: 4823
Статус: фанат консоли (=
ОС: GNU/Debian, RHEL

Re: Подсчёт количества httpd-процессов

Сообщение SLEDopit »

Увы, злостный ростелеком забанил *.wordpress.com. Не открывается :(
UNIX is basically a simple operating system, but you have to be a genius to understand the simplicity. © Dennis Ritchie
The more you believe you don't do mistakes, the more bugs are in your code.
Спасибо сказали:
allez
Сообщения: 2223
Статус: Не очень злой админ :-)
ОС: SuSE, CentOS, FreeBSD, Windows

Re: Подсчёт количества httpd-процессов

Сообщение allez »

SLEDopit писал(а):
10.04.2013 11:57
Увы, злостный ростелеком забанил *.wordpress.com. Не открывается :(

Вот:
Spoiler

Apache Optimization

All the important configuration options are stored by Apache in a config file called httpd.conf that is located at /usr/local/apache/conf/httpd.conf. We will start by opening this file in your favorite text editor. For example:
vi /usr/local/apache/conf/httpd.conf

MaxClients

Total number of concurrent connections.

Locate it in the configuration file. This should be set to a reasonable value. I suggest using this formula to determine the right value for your server.
MaxClients = 150 x RAM (GB)

So for example if you have 2 GB or RAM set this value to 300.
There is no reason for you to set it any higher unless you have a specific problem with this value. A high value can lead to a complete server hang in case of a DOS attack. A value too low can create timeout problems for your clients if the limit is reached.

ServerLimit

This value should be same as MaxClients
ServerLimit = 150 x RAM (GB)

MinSpareServers and MaxSpareServers

MaxSpareServers and MinSpareServers control how many spare (unused) child-processes Apache will keep alive while waiting for more requests to put them to use. Each child-process consumes resources, so having MaxSpareServers set too high can cause resource problems. On the other hand, if the number of unused servers drops below MinSpareServers, Apache will fork (an expensive operation) new child-processes until MinSpareServers is satisfied.

Leave those values to:
MinSpareServers 5
MaxSpareServers 10

If you have more them 2 GB of RAM and you run a resource intensive website consider increasing MaxSpareServers.

MaxRequestsPerChild

Controls the number of request the a child serves before the child is killed. This should not be set too low as it will put an unnecessary load on the apache server to recreate the child. I suggest setting it to:
MaxRequestsPerChild 1000 for 1 GB RAM

10,000 for 2 GB and 0 for more than 2 GB RAM

KeepAlive and MaxKeepAliveRequests

KeepAlive provides long-lived HTTP sessions which allow multiple requests to be sent over the same TCP connection. In some cases this has been shown to result in an almost 50% speedup in latency times for HTML documents with many images, but having keepalive on is also a resource intensive setting.

Here comes the big question: To KeepAlive or not to KeepAlive?

Well the opinions are mixed here, some say to KeepAlive some say not to.
KeepAlive off

If you want to hear my option I would say NOT to KeepAlive if you are running a shared hosting business or if you want to get the most out of your hardware. You should KeepAlive only if the loading time of your pages is the most important factor in your business and you have the money to invest in a more powerful hardware. If you decide to KeepAlive I suggest you set MaxKeepAliveRequest low to something like 2 seconds.

StartServers

Sets the number of child server processes created on startup. This setting depends greatly on the type of webserver you run. If you run low traffic websites on that server set it low to something like 5. If you have resource intensive websites on that server you should set it close to MaxClients.
StartServers 5

Timeout

The amount of time Apache will wait for three things: the total amount of time it takes to receive a GET request, The amount of time between receipt of TCP packets on a POST or PUT request, the amount of time between ACKs on transmissions of TCP packets in responses.

The default value is 300. You should set time to something a bit lower. A setting of 150 is probably ok. This will also help in case of small DOS attacks like to ones targeting some phpBB forums. Do NOT set it any lower then 10 as your users will start having timeout problems.
Timeout 150

After you have done all the necessary changes you can go ahead and restart Apache.

There is an extra step that you have to do so that the changes that you done to httpd.conf aren’t lost when a recompile is done.

To also save the changes in the database you will have to run:

/usr/local/cpanel/bin/apache_conf_distiller –update

You can check to see if the changes were accepted and will not be discarded at the next apache recompile by running

/usr/local/cpanel/bin/build_apache_conf

Sample values:

MinSpareServers 5
MaxSpareServers 10
ServerLimit 600
MaxClients 600
MaxRequestsPerChild 0
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 3

Timeout 30

Спасибо сказали:
yoweb
Сообщения: 5

Re: Подсчёт количества httpd-процессов

Сообщение yoweb »

Может проще lighttpd поставить?
iУведомление от модератора Ленивая Бестолочь
пожалуйста, воздержитесь от советов сменить используемый софт, ос, железо, пол и т.п. либо в самый-самый крайний случай, приводите весомые аргументы. спасибо :3
Спасибо сказали:
dr-evil
Сообщения: 159
ОС: Fedora 18

Re: Подсчёт количества httpd-процессов

Сообщение dr-evil »

это гениально, в теме про подсчет тел апача, предлагать установить lighttpd, лишь бы не считать.
Анализ подозрительных файлов тут
Все что вы скажете может быть использовано как баян.
Jabber-конференция: sysadmins.ru на conference.jabber.ru - всем добро пожаловать!
Спасибо сказали:
Ответить