logrotate in anderens Verzeichnis

Alle weiteren Dienste, die nicht in die drei oberen Foren gehören.
Antworten
Benutzeravatar
xcomm
Beiträge: 804
Registriert: 21.09.2003 05:12:01
Wohnort: Europe
Kontaktdaten:

logrotate in anderens Verzeichnis

Beitrag von xcomm » 14.11.2006 18:05:26

Hi Forum,

wie bekommt man logrotate dazu, den Output in ein anderes Verzeichnis etwa nach /var/log/apache2/old/ zu verschieben?

vi /etc/logrotate.d/apache2

Code: Alles auswählen

/var/log/apache2/*.log {
        weekly
        missingok
        rotate 52
        compress
        delaycompress
        notifempty
        create 640 root adm
        sharedscripts
        postrotate
                if [ -f /var/run/apache2.pid ]; then
                        /etc/init.d/apache2 restart > /dev/null
                fi
        endscript
}
Danke, xcomm

Benutzeravatar
xcomm
Beiträge: 804
Registriert: 21.09.2003 05:12:01
Wohnort: Europe
Kontaktdaten:

Beitrag von xcomm » 15.11.2006 08:59:49

Hi Forum,

RTFM half. ;-)

Code: Alles auswählen

olddir /var/log/apache2/old

Code: Alles auswählen

/var/log/apache2/*.log {
        weekly
        missingok
        rotate 52
        olddir /var/log/apache2/old
        compress
        delaycompress
        notifempty
        create 640 root adm
        sharedscripts
        postrotate
                if [ -f /var/run/apache2.pid ]; then
                        /etc/init.d/apache2 restart > /dev/null
                fi
        endscript
}

Regards, xcomm

Antworten