Tomcat: How to find out running tomcat version

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

    I have this challenge when working on an Ubuntu 18.04 Linux server.

    Here's how I fixed it:

    Run the command below to determine the location of your version.sh file:

    sudo find / -name "version.sh"
    

    For me the output was:

    /opt/tomcat/bin/version.sh
    

    Then, using the output, run the file (version.sh) as a shell script (sh):

    sh /opt/tomcat/bin/version.sh
    

    That's all.

    I hope this helps

提交回复
热议问题