Logrotate non esegue alcuna rotazione


0

Ho appena impostato LogRotate sul mio server RHEL6 in modo che ruoti i miei file di registro Apache personalizzati. Tuttavia, non fa nulla quando provo a eseguirlo manualmente.

Mi aspetto che ruoti i file di registro "access.log" e "err.log". Sono stati lì per alcuni giorni e devono essere ruotati.

Ecco l'output:

[root@pc1 httpd]# logrotate -d -f /etc/logrotate.d/apache
reading config file /etc/logrotate.d/apache
reading config info for /var/log/httpd/*log
/var/www/html/NSLogs/access.log
/var/www/html/NSErrorLogs/err.log


Handling 1 logs

rotating pattern: /var/log/httpd/*log
/var/www/html/NSLogs/access.log
/var/www/html/NSErrorLogs/err.log
 forced from command line (no old logs will be kept)
empty log files are rotated, old logs are removed
considering log /var/log/httpd/access_log
  log needs rotating
considering log /var/log/httpd/error_log
  log needs rotating
considering log /var/www/html/NSLogs/access.log
  log needs rotating
considering log /var/www/html/NSErrorLogs/err.log
  log needs rotating
rotating log /var/log/httpd/access_log, log->rotateCount is 0
dateext suffix '-20131023'
glob pattern '-[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]'
glob finding old rotated logs failed
fscreate context set to unconfined_u:object_r:httpd_log_t:s0
renaming /var/log/httpd/access_log to /var/log/httpd/access_log-20131023
disposeName will be /var/log/httpd/access_log-20131023.gz
running postrotate script
running script with arg /var/log/httpd/access_log: "
      /usr/bin/killall -HUP httpd
"
compressing log with: /bin/gzip
removing old log /var/log/httpd/access_log-20131023.gz
error: error opening /var/log/httpd/access_log-20131023.gz: No such file or directory
rotating log /var/log/httpd/error_log, log->rotateCount is 0
dateext suffix '-20131023'
glob pattern '-[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]'
glob finding old rotated logs failed
fscreate context set to unconfined_u:object_r:httpd_log_t:s0
renaming /var/log/httpd/error_log to /var/log/httpd/error_log-20131023
disposeName will be /var/log/httpd/error_log-20131023.gz
running postrotate script
running script with arg /var/log/httpd/error_log: "
      /usr/bin/killall -HUP httpd
"
compressing log with: /bin/gzip
removing old log /var/log/httpd/error_log-20131023.gz
error: error opening /var/log/httpd/error_log-20131023.gz: No such file or directory
rotating log /var/www/html/NSLogs/access.log, log->rotateCount is 0
dateext suffix '-20131023'
glob pattern '-[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]'
glob finding old rotated logs failed
fscreate context set to unconfined_u:object_r:httpd_sys_rw_content_t:s0
renaming /var/www/html/NSLogs/access.log to /var/www/html/NSLogs/access.log-20131023
disposeName will be /var/www/html/NSLogs/access.log-20131023.gz
running postrotate script
running script with arg /var/www/html/NSLogs/access.log: "
      /usr/bin/killall -HUP httpd
"
compressing log with: /bin/gzip
removing old log /var/www/html/NSLogs/access.log-20131023.gz
error: error opening /var/www/html/NSLogs/access.log-20131023.gz: No such file or directory
rotating log /var/www/html/NSErrorLogs/err.log, log->rotateCount is 0
dateext suffix '-20131023'
glob pattern '-[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]'
glob finding old rotated logs failed
fscreate context set to unconfined_u:object_r:httpd_sys_rw_content_t:s0
renaming /var/www/html/NSErrorLogs/err.log to /var/www/html/NSErrorLogs/err.log-20131023
disposeName will be /var/www/html/NSErrorLogs/err.log-20131023.gz
running postrotate script
running script with arg /var/www/html/NSErrorLogs/err.log: "
      /usr/bin/killall -HUP httpd
"
compressing log with: /bin/gzip
removing old log /var/www/html/NSErrorLogs/err.log-20131023.gz
error: error opening /var/www/html/NSErrorLogs/err.log-20131023.gz: No such file or directory

Cosa ti aspettavi che avrebbe fatto? Ho provato a ripulire l'output ma forse potresti modificarlo e incollarlo di nuovo e ora utilizzare il pulsante code {} (dopo aver selezionato il testo). Quindi le interruzioni di riga saranno corrette.
Rik,

Grazie, l'ho incollato di nuovo. Mi aspetto che ruoti i file di registro "access.log" e "err.log". Sono stati lì per alcuni giorni e devono essere ruotati.
Blizz,

Risposte:


1

Non sono sicuro che questo sia il problema, ma se Apache è ancora in esecuzione potrebbe avere un blocco su quei file di registro. Forse il /usr/bin/killall -HUP httpdnon uccide Apache abbastanza velocemente.

Prova a chiudere prima Apache e vedi se questo aiuta:

service httpd stop
logrotate -f /etc/logrotate.d/apache
service httpd start

Se non si avvia Apache con il servizio, è necessario utilizzare il comando appropriato.

BTW. my /etc/logrotate.d/httpd(che è il tuo /etc/logrotate.d/apache) assomiglia a questo:

/var/log/httpd/*log {
    missingok
    notifempty
    sharedscripts
    postrotate
        /bin/kill -USR1 `cat /var/run/httpd.pid 2>/dev/null` 2> /dev/null || true
    endscript
}

Ho provato a chiudere apache e quindi a eseguire logrotate ma non ha avuto alcun effetto
blizz

2
Hai rimosso il -dcomando? Perché con -dnulla viene fatto (mostrato solo ciò che verrà fatto). È solo per il debug. Forse dovresti aggiungere il contenuto della /etc/logrotate.d/apachetua domanda.
Rik,

Non mi rendevo conto che il -d gli impediva di fare qualsiasi cosa. Grazie per quello
Blizz,

1

Ho cambiato il formato del file di configurazione nel seguente e sembra funzionare bene ora.

/var/log/httpd/*log
/var/www/html/NSLogs/access.log
/var/www/html/NSErrorLogs/err.log
{
    copytruncate
    daily
    size 500M
    compress
    dateext
    maxage 60
}
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.