Tomcat: How to find out running tomcat version

前端 未结 27 1931
臣服心动
臣服心动 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:19

    To find out the Tomcat version, find this file – version.sh for *nix or version.bat for Windows. This version.sh file is normally located in the Tomcat bin folder.

    phpmongodb@kumar:/usr/share/tomcat7/bin$ ./version.sh 
    

    Note

    If you are not sure where is the version.sh file, try this command :

    sudo find / -name "version.sh"
    

    Find out everything about Tomcat7.

    sudo find / -name "tomcat7"
    

提交回复
热议问题