Do we have to make any updates in /etc/logrotate.conf or this is sufficient ?
I have now changed the settings as below as I want to keep 6 months logs .
/var/log/squid3/*.log {
weekly
compress
delaycompress
rotate 24
missingok
nocreate
shared
"rotate 2" means rotate 2 logs and delete anything older, so this is
equivalent to 2 days.
With my job, most of our servers, we use rotate 7 or rotate 14 for 1 or
2 weeks worth. Without drive scrubbing software, there is no easy way to
get those files back.
Also it may help to put the prerot
Hello Team ,
I have a doubt with squid log file rotation ,my squid log file rotation is
configured this way in /etc/logrotate.d/squid3
/var/log/squid3/*.log {
daily
compress
delaycompress
rotate 2
missingok
nocreate
sharedscripts
pr