Aug 13, 2011
tom

XAMPP Tomcat Version

Question

How do I figure out what version of tomcat my xampp is running ?

Answer

Here’s what I found:

You should be able to find this in the
log called ‘catalina.out‘.
Alternatively, you can go right to the
source; open
$TOMCAT_HOME/server/lib/catalina.jar
in a tool capable of handling zip or
jar files, and read the file called
org/apache/catalina/util/ServerInfo.properties.

That last bit is not guaranteed to
work across multiple versions, though.

Personal opinion — the catalina solution should be perfectly fine.

P.S. your (XAMPP) Tomcat home folder usually lies in $XAMPP/tomcat/

Related posts:

  1. shutting down tomcat process smoothly in Linux
  2. service tomcat status
  3. How to redirect tomcat console log to files? Tomcat started via windows bat
  4. Sed in Bash Difficult pattern
  5. How do I run strace or ltrace on Tomcat Catalina?

Leave a comment