以下是我的 logrotate 配置。
/mnt/je/logs/apache/jesites/web/*.log" {
missingok
rotate 0
size 5M
copytruncate
notifempty
sharedscripts
postrotate
/home/bitnami/.conf/compress-and-upload.sh /mnt/je/logs/apache/jesites/web/ web
endscript
}
以及 compress-and-upload.sh 脚本,
#!/bin/sh
# Perform Rotated Log File Compression
tar -czPf $1/log.gz $1/*.1
# Fetch the instance id from the instance
EC2_INSTANCE_ID="`wget -q -O - http://169.254.169.254/latest/meta-data/instance-id`"
if [ -z $EC2_INSTANCE_ID ]; then
echo "Error: Couldn't fetch Instance ID .. Exiting .."
exit;
else
/usr/local/bin/s3cmd put $1/log.gz s3://xxxx/logs/$(date +%Y)/$(date +%m)/$(date +%d)/$2/$EC2_INSTANCE_ID-$(date +%H:%M:%S)-$2.gz
fi
# Removing Rotated Compressed Log File
rm -f $1/log.gz
文件已旋转,但 shell 脚本未执行。我不知道如何调试后记。
是否有任何日志文件可供我检查以查看是否存在任何权限问题。
如果我直接从命令行执行脚本,文件上传就可以正常工作。
谢谢。
答案1
logrotate
通常以 cron 任务的形式运行,其错误最终会通过邮件发送至root
。请查看/var/mail/root
,或者确保/etc/aliases
将root
的邮件发送至合理位置,并且您的实例确实可以发送邮件。