I am interested to know how people usually check if Tomcat is running on the Unix environment or not.
I check the process running status using the below command:
ps -ef | grep java
ps -ef | grep logging
I checked the port number is active
netstat -a | grep 8080
Is there any better way to check that Tomcat is running? The above seems to be the 'hacky' way of checking that Tomcat is running.