awslinux /etc/cron.daily 不执行 logrotate 文件

awslinux /etc/cron.daily 不执行 logrotate 文件

抱歉我的英语水平较低

在我的临时服务器中

我想要每天进行 logrotate(nginx)

所以我创建了 logrotate 文件/etc/logrotate.d/

/etc/logrotate.d/nginx

/var/log/nginx/*log {
    create 0644 nginx nginx
    daily
    rotate 30
    missingok
    notifempty
    nocompress
    dateext
    dateformat -%Y%m%d
    sharedscripts
    postrotate
        if [ -f /var/run/nginx.pid ]; then
                 kill -USR1 `cat /var/run/nginx.pid`
        fi
    endscript
}

然后我将 logrotate 文件插入cron.daily

/etc/cron.daily/logrotate

#!/bin/sh
/usr/sbin/logrotate -f /etc/logrotate.conf
EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
    /usr/bin/logger -t logrotate "ALERT exited abnormally with 
[$EXITVALUE]"
fi
exit 0

我检查/etc/anacrontab

/etc/anacrontab

# /etc/anacrontab: configuration file for anacron

# See anacron(8) and anacrontab(5) for details.

SHELL=/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# the maximal random delay added to the base delay of the jobs
RANDOM_DELAY=45
# the jobs will be started during the following hours only
START_HOURS_RANGE=3-22

#period in days   delay in minutes   job-identifier   command
1       5       cron.daily              nice run-parts /etc/cron.daily
7       25      cron.weekly             nice run-parts /etc/cron.weekly
@monthly 45     cron.monthly            nice run-parts /etc/cron.monthly

我检查ls -la /var/spool/anacron/cron.daily

/var/spool/anacron/cron.daily

20180221

nginx 日志将像这样轮换access.log, access.log-20180222

但当我命令run-parts /etc/cron.daily

它不工作...

奇怪的是当我插入命令行时/usr/sbin/logrotate -f /etc/logrotate.conf

它工作得很好!

我认为/etc/cron.daily/logrotate没有执行时run-parts /etc/cron.daily

但在我的本地docker我命令run-parts /etc/cron.daily,它工作

只有临时服务器不工作,,

为什么/etc/cron.daily/logrotate我命令时文件不起作用run-parts /etc/cron.daily

答案1

问题解决了

这是权限问题

chmod 700 logrotate

-rw------- logrotate->-rwxr--r-- logrotate

效果很好

相关内容