2014-07-24 51 views
0

答案可能很明显,但我开始运行我的第一个logrotate实例。 在/etc/logrotate.d中的配置为什么logrotate没有做任何事情,但抱怨没有错误?

/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 

完全没有改变。它没有抱怨错误。 你能帮忙吗?

谢谢

回答

3

我犯了一个错误。
-d选项不应该使用。
但是,既然它的行为是这样,为什么不叫它“干”运行?

相关问题