Tomcat: How to find out running tomcat version

前端 未结 27 1942
臣服心动
臣服心动 2020-11-30 16:18

I\'m trying to get Appfuse + tomcat + jRebel working.

Appfuse by default uses Cargo to download tomcat (ver. 7.0.33) and deploy the application to it. I wish to use

27条回答
  •  难免孤独
    2020-11-30 17:16

    run the following

    /usr/local/tomcat/bin/catalina.sh version
    

    its response will be something like:

    Using CATALINA_BASE:   /usr/local/tomcat
    Using CATALINA_HOME:   /usr/local/tomcat
    Using CATALINA_TMPDIR: /var/tmp/
    Using JRE_HOME:        /usr
    Using CLASSPATH:       /usr/local/tomcat/bin/bootstrap.jar:/usr/local/tomcat/bin/tomcat-juli.jar
    Using CATALINA_PID:    /var/catalina.pid
    Server version: Apache Tomcat/7.0.30
    Server built:   Sep 27 2012 05:13:37
    Server number:  7.0.30.0
    OS Name:        Linux
    OS Version:     2.6.32-504.3.3.el6.x86_64
    Architecture:   amd64
    JVM Version:    1.7.0_60-b19
    JVM Vendor:     Oracle Corporation
    

提交回复
热议问题