I've been given a task to understand why 2 CentOS web servers running apache 2.2.3 are experiencing very high loads on specific occasions.
The first thing I checked was /var/log/messages
but then I realized that rsyslog is turned off for some reason, so I started it and turned it on using chkconfig
.
Then, I wanted to check apache error and access logs, so I browsed to /var/log/httpd
but found the folder to be empty.
I've checked /etc/httpd/conf/httpd.conf
and saw these lines:
ErrorLog logs/error_log
CustomLog logs/access_log combined
As far as I know it refers to /var/log/httpd/
but as said before the folder is empty.
While writing this question I've looked for the httpd version on the server and ran httpd -v
and that's the response I got:
[root@domU-IP httpd]# httpd -v
Server version: Apache/2.2.3
Server built: May 4 2011 06:51:15
Unable to open logs
My questions are:
- What could cause the logs to disappear? (It is possible they were never created in the first place)
- How can I recreate the logs and make sure data is written to them?
- Which permissions should be set on
/var/log/httpd
? The current permissions are:drwx------ 2 root root
Thanks in advance
When path references in an Apache configuration are not absolute (i.e. don't start with
/
) they are relative to the directory set in theServerRoot
directive. A common default for theServerRoot
is/etc/httpd
making/etc/httpd/logs
your log directory.Most packaged Apache versions create a symbolic link from
/etc/httpd/logs
to/var/log/httpd
. Either the actual directory in /etc/httpd is missing (or the root filesystem is full) or the symbolic link may be missing in your setup.Apache gets started by root and opens the log files as root before dropping privileges so those directory permissions on /var/log/httpd seem correct.
My problem was that there was no Log directive for the access log. I followed the instructions here https://ubuntuforums.org/showthread.php?t=1704686 which basically says:
On ubuntu, you're supposed to have a file named
/etc/apache2/conf.d/other-vhosts-access-log
with the following contents:I was missing this, which is why I didn't get the logs.