Re: Little explanation
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
StartServers - number of httpd processes started when you initially start the web server
MinSpareServers - the minimimun limit or number of httpd processes that will always be available at any point in time without serving requests i guess
MaxSpareServers - the max limit corresponding to the above :)
ServerLimit - the max httpd processes that can exist at any point in time. No new httpd process will be created once this limit is reached
MaxClients - maximum number of simultaneous client connections or httpd processes serving requests at any point in time. u cannot open or get your request served by web server once this limit is reached.
MaxRequestsPerChild - maximum number of requests a spawned httpd process can serve. once this is reached, httpd parent recycles the process (i think am correct in this. 90% sure)
Further, i hope u r aware of prefork model. Only one parent will start first which will inturn spawm many processes depending on these settings and load. that parent is also responsible for recylcing child/spawned process periodically
Regards
Prasanna Ram
[Index of Archives]
[Open SSH Users]
[Linux ACPI]
[Linux Kernel]
[Linux Laptop]
[Kernel Newbies]
[Security]
[Netfilter]
[Bugtraq]
[Squid]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Samba]
[Video 4 Linux]
[Device Mapper]