How to know apache MPM (Multi-Processing Modules) in use

If you have an apache installation like me in Ubuntu, you can use the following terminal command to see if apache is using MPM Prefork or MPM Event:

apachectl -V | grep -i mpm

The output will be something like:

Server MPM: prefork

More information about MPM: https://httpd.apache.org/docs/2.4/mpm.html

Leave a Reply

Your email address will not be published. Required fields are marked *