logrotate는 모든 CPU 전력을 사용합니다.

logrotate는 모든 CPU 전력을 사용합니다.

기본 Debian 8.5 Jessie /etc/logrotate.conf콘텐츠가 있습니다.

# 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

이 설정에서는 logrotate제 역할을 잘 수행합니다 . 그러나 변경하는 경우:

rotate 4

다음과 같은 다양한 것들에:

rotate 5

logrotate작업을 완료하지 못하고 모든 CPU 전력을 소비하므로 결국 해당 프로세스를 종료해야 합니다.

왜 그런 겁니까? 조정할 때 뭔가를 변경해야 합니까 rotate?

답변1

logrotate 구성을 실제로 적용하지 않고 구문 분석/디버깅하는 일부 명령을 찾으려고 합니다.

~에서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.

당신을 사용하여 실행됩니다

logrotate -d /etc/logrotate.conf

관련 정보