1

私のローテーションがうまくいっていないようです。logrotate を手動で実行すると、正常に動作します。ログで確認できるので、logrotate が実行されます。ここに私が持っているものがあります:

# 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

# use date as a suffix of the rotated file
dateext

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

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

/home/www/logs/access_log {
    sharedscripts
    delaycompress
    size 2G
    compress
    dateext
    maxage 30
    postrotate
    /usr/local/bin/apachectl -k graceful
    endscript
}

どんな手掛かり?

4

1 に答える 1