How do I tell if apache is running (or configured to run) as prefork or worker?
feedback
|
|
The MPM is configured at compile time. One way to figure it out afterwards is to list compiled in modules. That list will include the chosen MPM. The listing can be accomplished running the apache binary, with the -l flag.
Here we find the module worker.c, hence I'm running the worker MPM. | |||
|
feedback
|
|
On RHEL/Fedora/etc, run
Here 'Server MPM' is 'Prefork', so my server is running the prefork MPM. | |||
|
feedback
|