How to see tomcat working or not

What command is used to find if tomcat works or not in windows?

How do I know if a JVM crashes unexpectedly?

After googling I published it, I can not find the expected result.

+5
source share
4 answers

Go to the start menu. Open cmd (command line) and enter the following.

wmic process list short description | find / i "tomcat"

This will tell you if tomcat is working or not.

+15
source

open http: // localhost: 8080 / in the browser, if you get the tomcat homepage, it means tomcat is working

+4
source

, , Tomcat .

http://ipaddress:portnumber

this

+1
source

for localhost, the defaut port is 8080, you can check the http: // localhost: 8080 link in your browser. If you can see the tomcat homepage, your tomcat is working

0
source

All Articles