If you have a website and never have archived your apache logs, you may be surprised one day by running out of space due to logs using up all the free space on specific partition. Most people don’t think about archiving until it is too late. Here we set up a simple log rotation script which will work for apache 1.x and also for apache 2.x version as well. I have included comments in the script itself to help you understand what is going on throughout.
#!/bin/sh
#
# Created by: Sunny Walia
# Date created: 5/24/03
# Date Modified: 5/29/07
# Purpose: do any type of preprocessing before log.php can do its work.
# Also does log rotation and backup.
#
# Modification history:
# 5/25/03: added comments.
# Gzip and move to backup logs folder
# added config info on top
#
#
# configuration info
SERVERNAME="svr1"
WORKINGDIR="/admin/backups/$SERVERNAME/logs/"
BACKUPLOGSDIR="/admin/backups/$SERVERNAME/logs/archived/"
BACKUP_DIR="/admin/backups/$SERVERNAME/"
LOGDIR="/usr/local/apache2/logs/"
DATE=`date +%m%d%y%H`
APACHCTL_LOC="/usr/local/apache2/bin/"
#
mkdir $WORKINGDIR -p
mkdir $BACKUPLOGSDIR -p
mkdir $BACKUP_DIR -p
#
# move the logs into their temp name so apache can continue to write to it
mv ${LOGDIR}access_log ${LOGDIR}${SERVERNAME}_access_log.old
mv ${LOGDIR}error_log ${LOGDIR}${SERVERNAME}_error_log.old
#
# restart apache gracefully so it will finish what its doing and start a new log file
# when done serving current requests
${APACHCTL_LOC}apachectl graceful
#
# give some time to apache to finish serving pending requests (in secs)
sleep 15
#
# copy the files to our directory for processing
cp ${LOGDIR}${SERVERNAME}_access_log.old ${WORKINGDIR}${SERVERNAME}_access_log
cp ${LOGDIR}${SERVERNAME}_error_log.old ${WORKINGDIR}${SERVERNAME}_error_log
#
mv ${LOGDIR}${SERVERNAME}_access_log.old ${LOGDIR}${SERVERNAME}_access_log.$DATE
mv ${LOGDIR}${SERVERNAME}_error_log.old ${LOGDIR}${SERVERNAME}_error_log.$DATE
gzip ${LOGDIR}${SERVERNAME}_access_log.$DATE
gzip ${LOGDIR}${SERVERNAME}_error_log.$DATE
#
# we move instead of copy than delete since if mv fails, we still have originals
# mv can fail if target location is full
mv ${LOGDIR}${SERVERNAME}_access_log.$DATE.gz $BACKUPLOGSDIR
mv ${LOGDIR}${SERVERNAME}_error_log.$DATE.gz $BACKUPLOGSDIR
Let us make the script executable:
chmod +x script_name.sh
You can automate this to happen every day by putting it in your crontab:
crontab -e
1 0 * * * /path/to/this/script
This will rotate your logs at 12:01 AM every day.
————————————-
DISCLAIMER: Please be smart and use code found on internet carefully. Make backups often. And yeah.. last but not least.. I am not responsible for any damage caused by this posting. Use at your own risk.
Great and helpful script! Keep posting more!
Hello, after reading this awesome post i am also glad to share my familiarity here with mates.
I have to convey my admiration for your generosity supporting all those that need guidance on that question. Your personal commitment to getting the solution up and down became remarkably effective and has always made employees just like me to get to their aims. Your personal important help and advice entails a lot a person like me and even further to my peers. Best wishes; from all of us.
I simply had to thank you so much all over again. I’m not certain the things that I would have implemented without the type of tips and hints revealed by you on that theme. It was actually a very intimidating dilemma in my circumstances, however , being able to view a skilled technique you managed the issue took me to leap with fulfillment. I’m grateful for this advice and in addition wish you realize what an amazing job that you are accomplishing training people today through your webblog. I am sure you haven’t encountered any of us.
Thanks for all of your hard work on this blog. My niece loves making time for investigation and it is easy to understand why. A lot of people hear all concerning the lively means you convey powerful solutions through your web blog and as well as boost response from the others on that subject while our daughter is in fact learning a whole lot. Enjoy the rest of the new year. You’re carrying out a powerful job.