How does JIRA log rotation work? I can see our logs in /install directory/jira/logs are beign rolled over once a day but I want to also compress an donly keep so many. There is nothign in /etc/logrotate.d for JIRA logs so I'm not sure where/what is doing it.
Any ideas?
I've created a cron to auto delte any logs older then 30 days.
30 2 * * * find /opt/atlassian/jira/logs/*.* -mtime +30 | xargs rm
Hi Brandon,
I've been investigating this same issue as well.
The logs in JIRA's Installation directory are the Tomcat log files, which are not rotated/expired automatically.
The logs in JIRA's Home directory are the Atlassian log files, which are rotated at around 20MB.
My catalina.out log file (in the Installation log directory) at one point was up to 8GB in size. Other log files here weren't as large but dated back years.
Following these links:
I was able to come-up with a log rotation/expiration solution that works:
(Note: The path to your installation directory and log4j.properties may be different than mine)
sed -i 's/, console,/,/g' log4j.properties
/usr/local/atlassian/jira/logs/catalina.out { copytruncate dateext monthly rotate 6 compress delaycompress missingok }
Hope this helps get you going in the right direction. Le me know if you have questions.
-- Stephen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Stephen,
I am trying to setup log rotation , request you to share your script which removes file.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is the link to the script I use for Atlassian log rotation:
https://github.com/UCLALibrary/atlassian_scripts/blob/master/atlassian_rotate_tomcat_logs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Brandon.
I don't think it's possible to compress the logs automatically, without using a third-party script or tools.
I would like to send you some pages that may give you a better idea, on how the logging works:
https://confluence.atlassian.com/display/JIRA/Logging+and+Profiling
https://confluence.atlassian.com/display/JIRAKB/How+to+Rotate+Catalina+Log+File
https://jira.atlassian.com/browse/JRA-8841
https://jira.atlassian.com/browse/JRA-28941
Please, see this another question regarding auto compress the rotated logs:
https://answers.atlassian.com/questions/235136/can-i-configure-jira-confluence-to-compress-their-rotated-logs
I hope it helps.
Cheers,
Pedro Souza.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.