How To Reduce Log File Disk Usage With ISPConfig Or LAMP
Want to support HowtoForge? Become a subscriber!
|
Submitted by marchost (Contact Author) (Forums) on Thu, 2008-06-12 13:06. :: ISPConfig | Linux | Control Panels
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
|



Recent comments
1 day 1 hour ago
1 day 5 hours ago
1 day 10 hours ago
1 day 13 hours ago
1 day 13 hours ago
1 day 13 hours ago
1 day 17 hours ago
1 day 18 hours ago
1 day 20 hours ago
2 days 3 hours ago