From ade5c85d10747eefab274cc70a2ba61d35df2e49 Mon Sep 17 00:00:00 2001 From: olstjos <75325509+olstjos@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:51:39 -0400 Subject: [PATCH] On httpd startup solve AH02282: No slotmem --- 8.0/Dockerfile.rhel8 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/8.0/Dockerfile.rhel8 b/8.0/Dockerfile.rhel8 index 328835d38..272c4ff01 100644 --- a/8.0/Dockerfile.rhel8 +++ b/8.0/Dockerfile.rhel8 @@ -78,6 +78,9 @@ RUN /usr/libexec/container-setup && rpm-file-permissions # Related: https://bugzilla.redhat.com/show_bug.cgi?id=2092356 RUN sed -i "s/mod_php7.c/mod_php.c/" /etc/httpd/conf.d/php.conf +#Resolve the following warning httpd service startup: AH02282: No slotmem from mod_heartmonitor +RUN sed -i 's/mod_lbmethod_heartbeat.so\/mod_lbmethod_heartbeat.so/# mod_lbmethod_heartbeat.so\/mod_lbmethod_heartbeat.so/g' /etc/httpd/conf.modules.d/00-proxy.conf + USER 1001 # Set the default CMD to print the usage of the language image