-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
httpd error_log reporting permissions issue. #578
Comments
It appears there is a line the specifies the group for the process in
After commenting this line out the permissions message error went away. |
After spending some more time on this I have not yet figured out why this httpd config works for 2.x and not 3.x. If it is not essential that this |
The |
This is reopened as this has been reinvestigated. The cause of this permission error is a result of this code in the installer: os.chmod("/var/run", stat.S_IWRITE)
os.chmod("/var/run", stat.S_IWGRP)
os.chmod("/var/run", stat.S_IWOTH) This results in only the |
PR #676 has been made to resolve this. |
From
/var/log/httpd/error_log
It seems there is a permission issue.
The text was updated successfully, but these errors were encountered: