fix httpd: Configuration error: No MPM loaded
fix httpd: Configuration error: No MPM loaded when run "./build rewrite_confs"
For those who stumble onto this note while looking for a solution, just add
LoadModule mpm_event_module modules/mod_mpm_event.so
intohttpd.conf
above the other LoadModule directives.
(from the comments on the commit #17166574)
file /usr/local/apache2/conf/httpd.conf or etc/httpd/conf/
For the complete correction, add this to your httpd.conf
LoadModule mpm_event_module modules/mod_mpm_event.so
#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
#LoadModule mpm_worker_module modules/mod_mpm_worker.so
or, for a more future-proof solution, you could modify the original http.conf file using sed.