docker/httpd: Configuration error: No MPM loaded

2020-02-08 07:44发布

I have a docker container based in the httpd official image. From nowhere (after a new build), it started failing with the error:

AH00534: httpd: Configuration error: No MPM loaded.

Nothing else.

I'm using the official httpd image (FROM httpd:2.4) and everything was working fine until now.
The error appeared only after pruning all images in my system with a docker system prune -af

标签: apache docker
4条回答
Evening l夕情丶
2楼-- · 2020-02-08 08:23

(edit, thanks delboy1978uk) The error could be avoided if applied a simple best practice: pin your docker images to a specific version instead of latest.


After digging the commits of the official httpd image, I found the solution. (maybe this question/answer may help others)

For those who stumble onto this note while looking for a solution, just add LoadModule mpm_event_module modules/mod_mpm_event.so into httpd.conf above the other LoadModule directives.

(from the comments on the commit #17166574)

So, because I was overriding the file /usr/local/apache2/conf/httpd.conf without explicitly declare an MPM module, after this commit, my image started to fail.
With this quick fix, everything is fine now.

For the complete correction, add this to your httpd.conf file (thanks svinther):

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.

查看更多
一纸荒年 Trace。
3楼-- · 2020-02-08 08:25

Much as the accepted solution works, it is less than ideal. The real reason you are getting this error is most likely the fact that your Dockerfile begins with the following line:

FROM httpd:latest

That latest part, is you asking for the latest and greatest version of Apache.

Don't do that. This is your infrastructure. Lock it down to a version number.

Something like

FROM apache:2.4.0

This is the real answer. Not doing that risks your own codebase failing when third party software vendors update their code.

Get the latest version of httpd.conf, and take a note of the version number, then tweak it with your changes, and get that :latest the hell out of your Dockerfile.

查看更多
Melony?
4楼-- · 2020-02-08 08:31

I´m using this in my docker file

FROM php:7.2-apache

And i fixed this problem adding this line to /etc/docker/daemon.json

{
    "storage-driver": "devicemapper"
}
查看更多
小情绪 Triste *
5楼-- · 2020-02-08 08:36

After comparing my configuration with latest httpd:2.4 configuration, I found that these new lines needed to be merged into conf/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

Note to self: When building the derivative httpd docker image, it would probably be better to mod the conf files with sed, than to just COPY in a static file

查看更多
登录 后发表回答