Change Apache MPM on CentOS 7

Here’s an article on how to change your current Apache MPM on CentOS 7 machine. Apache version I’m using is Apache 2.4. To check which MPM is currently in use you can run: httpd -V which should print something like: ... Architecture: 64-bit Server MPM: prefork threaded: yes (fixed thread count) forked: yes (variable process count) Server compiled with.... ... Default MPM worker should be prefork. If you want to change that, to let’s say, worker MPM you can do that by changing the file located in /etc/httpd/conf....

July 10, 2016 · 2 min · Ivan Tomica