How To Reduce Log File Disk Usage With ISPConfig Or LAMP
Do you like HowtoForge? Please consider to support us by becoming a subscriber.
How To Reduce Log File Disk Usage With ISPConfig Or LAMPSlowly I was seeing my disk usage increasing, I knew it was log files that were getting bigger and bigger. I found out that Apache log files were the worst, there was around 1GB of space used in 3 months. So I decided to make a bash script that would compress Apache log file every month. I run ISPConfig, the script can be modified to your needs : #!/bin/bash
MONTH="$((`date +%m`-1))"
YEAR=$(date +"%Y")
cd /var/www/
for f in $(ls /var/www | grep web); do
cd /var/www/$f/log
if [ -a $YEAR ];
then
cd $YEAR
if [ -a 0$MONTH ];
then
tar -zcvf 0$MONTH.tar.gz 0$MONTH
rm -rf /var/www/$f/log/$YEAR/0$MONTH
fi
fi
done
Then you run this script in your crontab the first day of each month: 05 03 1 * * sh /root/logclean.sh
|
Sponsored Links: Request a Novell/Microsoft migration






Recent comments
21 hours 25 min ago
22 hours 22 min ago
22 hours 34 min ago
1 day 4 hours ago
1 day 7 hours ago
1 day 8 hours ago
1 day 11 hours ago
1 day 12 hours ago
1 day 13 hours ago
1 day 16 hours ago