Good morning everyone.
Im new to Apache and have a couple of quick questions.
What im trying to figure out is how to limit the number of processes that start up with apache...
Im running a server with mailman on it. The server is internal so nobody needs to access the web interface except myself. With that in mind, I figure I could limit the number of processes to 2 or 3..
Looking at httpd.conf, I found this line:
Code:
# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule prefork.c>
StartServers 8
MinSpareServers 5
MaxSpareServers 20
MaxClients 150
MaxRequestsPerChild 1000
</IfModule>
The line with StartServers starts 8 httpd processes, correct? I could change that too whatever amount I desire, correct?
Im just trying to make sure I secure the server and not have any process running that I dont require.
Thanks everyone...
Tarballed