I would like to write shell script to start and stop tomcat server.For stopping the tomcat I am using this command \"./bin/shudown.sh\" or \"./bin/catalina.sh stop\". This is no
You can use: pkill -9 tomcatServiceName or killall -9 tomcatServiceName.