The following is a segment from a current Apache installation I'm attempting to decipher for bad performance. I noticed the below, both uncommented:

<IfModule mpm_prefork_module>
    StartServers          5
    MinSpareServers       5
    MaxSpareServers      10
    MaxClients          200
    MaxRequestsPerChild   0
</IfModule>

<IfModule mpm_worker_module>
    StartServers          2
    MaxClients          150
    MinSpareThreads      25
    MaxSpareThreads      75 
    ThreadsPerChild      25
    MaxRequestsPerChild   0
</IfModule>

When prefork and worker are both defined, what happens? We're using PHP, so I assume that prefork would be what we want.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

When prefork and worker are both defined, what happens? We're using PHP, so I assume that prefork would be what we want.

Exactly. You can confirm with:

# apachectl -l

or

# httpd -V
link|improve this answer
apache2 -V shows -D APACHE_MPM_DIR="server/mpm/prefork". Thanks! – Hyppy Jul 27 '11 at 14:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.