vote up 3 vote down star
1

I've got an Apache server that has one access log file that is topping 600MB. This makes it really hard to search the file or parse it.
What software or modules for Apache are available that will make a daily copy of my access file to make it more manageable?

flag

80% accept rate
Lucky you - the one I'm facing is 2.4 GIGABYTES :( – Bobby Jack Oct 15 '08 at 10:56
You could indicate whether you are really looking for an Apache module, or something that depends on the employed OS, such as logrotate or cron (already mentioned in the answers). That could help in replying to this - in my opinion - simple question. – Kariem Jan 14 '09 at 14:12

4 Answers

vote up 8 vote down check

Have you looked at logrotate - this is probably the simplest, most widely available and well undestood method of achieving this. It is highly configurable and will probably do 90% of what you need.

link|flag
typo: "undestood" -> "understood" – Bobby Jack Oct 15 '08 at 10:56
vote up 3 vote down

I'm a big fan of Cronolog. Just install and pipe your logs through it. For daily log rotation, something like this would work:

ErrorLog  "|/usr/bin/cronolog /path/to/logs/%Y-%m-%d/error.log"
CustomLog "|/usr/bin/cronolog /path/to/logs/%Y-%m-%d/access.log" combined

Pretty handy, and once installed, easier (in my experience) than logrotate.

link|flag
vote up 1 vote down

logrotate is probably the best solution. Use the file '/etc/logrotate.conf' to change the settings for all your logs. You van change 'weekly' to 'daily' so the logs are rotated every day. Also, you might want to add 'compress' so the archives are compressed. If you don't care about the old logs, you can set rotate 'rotate 4' to something lower.

link|flag
I'm intrigued - what are the differences between this and the apache-supplied 'rotatelogs'? And why doesn't the apache manual mention logrotate (yet it does refer to cronolog)? – Bobby Jack Oct 15 '08 at 11:06
Just an assumption: this could be because logrotate is not available on all system Apache is running. I have only used it on Linux installations, where it is used to rollover all of the system logs, and of course Apache's log files. – Kariem Jan 14 '09 at 14:20
vote up 0 vote down

The actual command for Windows, which is quite difficult to find online is:

CustomLog '|" "*Apache-Path/bin/rotatelogs.exe" "*Apache-Path/logs/backup/internet_access_%d-%m-%y.log" 86400' combined

Where the "internet_access" bit is the name you choose for your files, the 86400 is the number of seconds in one day. You need to change the Apache-Path to the relevant directory you've installed Apache to.

link|flag

Your Answer

Get an OpenID
or

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