You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 8, 2019. It is now read-only.
$subject, so when i run docker.io/fedora/apache in an environment where root user/actions are prohibited(like openshift) container cannot boot up.
See following container log:
$ docker logs 9c50a64d5b97
rm: cannot remove '/run/httpd/*': Permission denied
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.17.0.3. Set the 'ServerName' directive globally to suppress this message(13)Permission denied: AH00058: Error retrieving pid file /run/httpd/httpd.pidAH00059: Remove it before continuing if it is corrupted.
The text was updated successfully, but these errors were encountered:
I would enter the docker image and check the permissions on /run/httpd. In my case, I was trying to use the user httpd, when the start process is owned by apache. I suppose you could add httpd user to apache group too.
docker run -itu 0 --entrypoint /bin/bash <IMAGE>
ls -la /run
ls -la /run/httpd
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
$subject, so when i run
docker.io/fedora/apache
in an environment where root user/actions are prohibited(like openshift) container cannot boot up.See following container log:
The text was updated successfully, but these errors were encountered: