Last updated on April 18th, 2022 at 06:14 pm
Starting up
Recently I install the Bitnami WordPress on Apple MacBook Air M1, after WordPress setup finished, the error appeared after the Starting Apache
The Errors
(95)Operation not supported: AH00023: Couldn’t create the mpm-accept mutex (95)Operation not supported: could not create accept mutex
The fixes
Using a Dockerfile with the contents:
FROM bitnami/moodle
# Some credit goes to: https://www.linode.com/community/questions/16977/server-fails-after-installing-certbot-mpm-run-failed-exiting#answer-66578
RUN echo 'Mutex posixsem' >>/opt/bitnami/apache2/conf/httpd.conf
worked for me on my Mac M1.
I’m running minikube on my M1 and trying to install the wordpress helm chart for a demo and I keep getting this error when I check the logs of my wordpress pods because the pods are in a CrashLoopBackOff state.