logrotate Usa todo o poder da CPU

1

Eu tenho o Debian default 8.5 Jessie /etc/logrotate.conf contents:

# see "man logrotate" for details
# rotate log files weekly
weekly

# keep 4 weeks worth of backlogs
rotate 4

# create new (empty) log files after rotating old ones
create

# uncomment this if you want your log files compressed
#compress

# packages drop log rotation information into this directory
include /etc/logrotate.d

# no packages own wtmp, or btmp -- we'll rotate them here
/var/log/wtmp {
    missingok
    monthly
    create 0664 root utmp
    rotate 1
}

/var/log/btmp {
    missingok
    monthly
    create 0660 root utmp
    rotate 1
}

# system-specific logs may be configured here

Com essas configurações logrotate faz bem seus trabalhos. No entanto, se eu mudar:

rotate 4

para algo diferente, por exemplo:

rotate 5

logrotate nunca faz o seu trabalho, consumindo todo o poder da CPU, então eu tenho que matar seu processo eventualmente.

Por que isso? Devo mudar alguma coisa quando sintonizar rotate ?

    
por TranslucentCloud 09.08.2016 / 08:54

1 resposta

2

Tente procurar algum comando para analisar / depurar a configuração do logrotate sem realmente aplicá-la.

de man logrotate

     -d, --debug                                                              
            Turns  on  debug mode and implies -v.  In debug mode, no changes  
            will be made to the logs or to the logrotate state file.

para usar você executaria

logrotate -d /etc/logrotate.conf
    
por 09.08.2016 / 09:33