Thanks for reply,
Disk space is enough David and there aren't unusual records in access.log, I have ~30 client and they works on internet all day long. Dirk is right, Webconfig doesn't read the log file, it was very big.
The real problem is that logrotate progress is not working properly. I tried to force it as Dirk's said and that worked smoothly.
Finally I added "-f" parameter into /etc/cron.daily/logrotate file.
| Code: |
#!/bin/sh
/usr/sbin/logrotate /etc/logrotate.conf -f
EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
/usr/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
fi
exit 0
|
I hope it will solve my problem but it's looking as a bug.