Finding the Bundled Tomcat Version Per JIRA Release
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
From time to time support receives requests for us to provide the version of Tomcat that is bundled with a particular release. There's a few methods we can use to find this information.
Solution
Method 1 - System Information
Browse to System Information, and navigate down to the Application Server Container entry. Here's an example of what this looks like in JIRA 6.4.6. As you can see the bundled Tomcat version is 7.0.55

Method 2 - Via Command Line
Run the following commands from your <application-install>
or <tomcat-install>
directory:
ℹ️ If you do not have your Java Home directory included in your PATH environment variable, you will need to include the path to your <java-home>/bin directory
in front of the java
command.
Linux:
1
java -cp lib/catalina.jar org.apache.catalina.util.ServerInfo
Windows:
1
java.exe -cp lib\catalina.jar org.apache.catalina.util.ServerInfo
The output should be similar to this:
1
2
3
4
5
6
7
8
Server version: Apache Tomcat/8.5.65
Server built: Mar 30 2021 12:28:40 UTC
Server number: 8.5.65.0
OS Name: Mac OS X
OS Version: 10.15.7
Architecture: x86_64
JVM Version: 11.0.9.1+1
JVM Vendor: AdoptOpenJDK
If you see an output such as this
1
Error: Could not find or load main class org.apache.catalina.util.ServerInfo
this is an indication that you are not in the expected directory when running this command. Check that you are in the $JIRAINSTALL/ root directory when making this call.
Was this helpful?