Tomat version as seen in folder name
If you want to know which version of Tomcat that has been installed on your system or on the server you can do so by going to the tomcat directory. If you extract the setup zip file it by default has the version name as the folder name example: apache-tomcat-8.5.60, but if it was renamed then you can try the below,
- Locate tomcat directory,
- Go to /bin and open CMD in this location,
- Type version.bat (if on Windows or version.sh for Linux/Mac), you should see the version details displayed on the console,
D:\setup\apache-tomcat-8.5.60\bin>version.bat Using CATALINA_BASE: "D:\setup\apache-tomcat-8.5.60" Using CATALINA_HOME: "D:\setup\apache-tomcat-8.5.60" Using CATALINA_TMPDIR: "D:\setup\apache-tomcat-8.5.60\temp" Using JRE_HOME: "C:\Program Files\Android\Android Studio\jre\jre" Using CLASSPATH: "D:\setup\apache-tomcat-8.5.60\bin\bootstrap.jar; D:\setup\apache-tomcat-8.5.60\bin\tomcat-juli.jar" Using CATALINA_OPTS: "" Server version: Apache Tomcat/8.5.60 Server built: Nov 12 2020 17:31:55 UTC Server number: 8.5.60.0 OS Name: Windows 10 OS Version: 10.0 Architecture: amd64 JVM Version: 1.8.0_242-release-1644-b01 JVM Vendor: JetBrains s.r.o D:\setup\apache-tomcat-8.5.60\bin>
As you can see Tomcat is installed in D:\setup\apache-tomcat-8.5.60 and the version is Apache Tomcat/8.5.60
⚡️ If you are using macOS or Linux you follow the same steps just instead of version.bat you run ./version.sh from the Terminal.
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Tomcat,
- How to check installed Tomcat version
- How to kill tomcat server process using Mac Terminal Command
- Tomcat Manager Default Username and Password
- -bash: startup.sh: command not found - Apache Tomcat 8
- Error 404 Tomcat homepage http://localhost:8080/ not displayed
- Fix Apache Tomca: java.lang.OutOfMemoryError: PermGen spaceError
More Posts:
- List of Online Java compiler with console - Java
- appcompat_v7 errors after updates to API level 21 Material Theme - Android
- Create simple struts2 project using maven commands - Java
- incorrect line ending: found carriage return (\r) without corresponding newline (\n) - Android
- Switch between Python 2.x 3.x versions in Mac Terminal - MacOS
- Fix zsh: permission denied: script.sh - zsh
- Java 8: Convert Iterator to Stream Examples - Java
- How to save a file in Nano Editor and Exit - Linux