:: Determine which MPM running in apache
|
0 |
apachectl -l |
if you see worker.c, your apache running worker mpm, if you see prefork.c, apache running prefork.
:: Determine has apache worked mpm compiled
|
0 |
httpd.worker -l |
make sure you see worker.c on there.
:: How to change apache prefork mpm to worker mpm on linux centos
|
0 1 2 |
vi /etc/sysconfig/httpd # uncomment on this line HTTPD=/usr/sbin/httpd.worker |
then restarting apache
|
0 |
/etc/init.d/httpd restart |
:: Links
+ Google
+ CrisGilligan
