为什么logrotate什么也没做,只是抱怨没有错误?

时间:2014-07-24 09:27:36

标签: nginx logrotate

答案可能很明显,但我开始运行我的第一个logrotate实例。 /etc/logrotate.d

中的配置
    /mnt/nginx/logs/access.log {
        size 1k
        dateext
        missingok
        rotate 10
        compress
        delaycompress
        notifempty
        create 640 root root 
        sharedscripts
        postrotate
                [ -f /opt/nginx/logs/nginx.pid ] && kill -USR1 `cat /opt/nginx/logs/nginx.pid`
        endscript
}

然后我用

测试了它
sudo /usr/sbin/logrotate -dvf /etc/logrotate.d/nginx

并得到了关注     阅读配置文件/etc/logrotate.d/nginx     阅读/mnt/nginx/logs/access.log的配置信息

Handling 1 logs

rotating pattern: /mnt/nginx/logs/access.log  forced from command line (10 rotations)
empty log files are not rotated, old logs are removed
considering log /mnt/nginx/logs/access.log
  log needs rotating
rotating log /mnt/nginx/logs/access.log, log->rotateCount is 10
dateext suffix '-20140724'
glob pattern '-[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]'
glob finding logs to compress failed
glob finding old rotated logs failed
renaming /mnt/nginx/logs/access.log to /mnt/nginx/logs/access.log-20140724
creating new /mnt/nginx/logs/access.log mode = 0640 uid = 0 gid = 0
running postrotate script
running script with arg /mnt/nginx/logs/access.log : "
                [ -f /opt/nginx/logs/nginx.pid ] && kill -USR1 `cat /opt/nginx/logs/nginx.pid`
"


Before test
total 84K
-rw-r--r-- 1 root root 51K Jul 22 15:05 access.log
-rw-r--r-- 1 root root 24K Jul 15 17:02 error.log


After test
total 84K
-rw-r--r-- 1 root root 51K Jul 22 15:05 access.log
-rw-r--r-- 1 root root 24K Jul 15 17:02 error.log

没有任何改变。并没有抱怨错误。 你能帮忙吗?

由于

1 个答案:

答案 0 :(得分:3)

我弄错了。
不应使用-d选项 但既然它就这样行动,为什么不把它称为“干”运行?