We have an apache server running on linux writing to a log file that is getting really large (access_log). Our server will begin running out of space. Is there a way to delete or truncate the file without restarting the server (we don't want any down time).

link|improve this question

6% accept rate
feedback

migrated from stackoverflow.com Nov 18 '09 at 22:43

This question came from our site for professional and enthusiast programmers.

3 Answers

How to reset your log files

Sooner or later, you'll want to reset your log files (access_log and error_log) because they are too big, or full of old information you don't need.

access_log typically grows by 1Mb for each 10,000 requests.

Most people's first attempt at replacing the logfile is to just move the logfile or remove the logfile. This doesn't work.

Apache will continue writing to the logfile at the same offset as before the logfile moved. This results in a new logfile being created which is just as big as the old one, but it now contains thousands (or millions) of null characters.

The correct procedure is to move the logfile, then signal Apache to tell it to reopen the logfiles.

Apache is signaled using the SIGHUP (-1) signal. e.g.

mv access_log access_log.old
kill -1 `cat httpd.pid` 

Note: httpd.pid is a file containing the process id of the Apache httpd daemon, Apache saves this in the same directory as the log files.

Many people use this method to replace (and backup) their logfiles on a nightly or weekly basis.

http://httpd.apache.org/docs/1.3/misc/howto.html#logreset

link|improve this answer
What about logrotated ? – LiraNuna Oct 5 '09 at 19:38
I can't find the file httpd.pid in /var/log/httpd, any ideas? – erotsppa Oct 5 '09 at 19:57
Not sure.. Have you done a directory search? – madcolor Oct 5 '09 at 20:07
Under /var/run/httpd.pid. Thanks! – erotsppa Oct 5 '09 at 20:33
feedback

log rotation is the long-term solution but the answer to your immediate question is to truncate the file something like this:

sudo cat /dev/null > /var/log/httpd/access_log

i'm assuming you're not logged in as root and assuming the location of your log file but you should be able to adjust the command as needed and quickly truncate an open log file w/o touching your running apache processes.

link|improve this answer
feedback

Zero the logfile...

# :>filename
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.