In versions prior to 2.4, you cannot change the MPM of Apache2 binary installation at run time.
You need to compile Apache with the desired MPM using the command line --with-mpm=MODULE NAME in the config script. To modify MPM, the binary must be rebuilt.
You can determine which MPM Apache2 is currently built by running apache2 -l or httpd -l on the command line.
Brief but very clear documentation on this subject:
http://httpd.apache.org/docs/2.2/mpm.html
In version 2.4, you can also create MPMs as dynamic modules that allow you to modify MPMs at run time.
http://httpd.apache.org/docs/2.4/mpm.html#dynamic
source share