/etc/apache2/modules/mod_mpm_prefork.所以在 docker 图片中找不到
/etc/apache2/modules/mod_mpm_prefork.so not found in docker image
启动 apache 时出现 AH00534: apache2: Configuration error: No MPM loaded
错误
所以我添加了模块:
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
/etc/apache2/modules/mod_mpm_prefork.so: 无法打开共享对象文件: 没有那个文件或目录
apachectl -V | grep -i mp
returns:
Compiled using: APR 1.5.2, APR-UTIL 1.5.4
Server MPM: prefork
Server compiled with....
我打算如何加载模块?路径可能不同吗(我正在使用 php:5.6-apache-stretch
的 docker 图像。
我需要包括:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf
加载模块之前
启动 apache 时出现 AH00534: apache2: Configuration error: No MPM loaded
所以我添加了模块:
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
/etc/apache2/modules/mod_mpm_prefork.so: 无法打开共享对象文件: 没有那个文件或目录
apachectl -V | grep -i mp
returns:
Compiled using: APR 1.5.2, APR-UTIL 1.5.4
Server MPM: prefork
Server compiled with....
我打算如何加载模块?路径可能不同吗(我正在使用 php:5.6-apache-stretch
的 docker 图像。
我需要包括:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf
加载模块之前