I'm trying to transfer each log file to s3. there is an automatic script that picks up tail_catina.log and overrights anything there.

I want each log file tail_catalina.log1, tail_catalina.log2, tail_catalina.log3 etc. saved to my s3.

I want everything!!

link|improve this question

31% accept rate
feedback

1 Answer

Early Beanstalk AMIs were not rotating logs properly. You can fix it by using the latest AMI in your deployment. Go to EC2 Console, AMIs. Filter the list by choosing Amazon Images, "elasticbeanstalk" then sort by "Source" to see the latest AMIs.

Alternatively, you can edit the file /etc/logrotate.conf.elasticbeanstalk on the Beanstalk server to fix log rotation. The following config appends the timestamp after file names. It produces logs like tail_catalina.log-1322236861.gz, tail_catalina.log-1322240461.gz, etc.

/var/log/tomcat6/catalina.out /var/log/tomcat6/monitor_catalina.log /var/log/tomcat6/tail_catalina.log {
    size 1M
    missingok
    rotate 2
    compress
    notifempty
    copytruncate
    dateext
    dateformat -%s
    lastaction
        /bin/chown tomcat:elasticbeanstalk /var/log/tomcat6/*gz; /bin/chmod 664 /var/log/tomcat6/*gz
    endscript
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.