Apache Tomcat Bounce
To stop Apache Tomcat please follow below steps :
- Go to Tomcat bin folder: cd $CATALINA_HOME/bin.
- sh shutdown.sh.
- Check the any java process are running as background related to tomcat by using the command:ps –ef | grep jdk.
- If any Java process are found, kill that process related to tomcat using the command: kill -9 <process id>. For ex: kill -9 29765.
To start Apache Tomcat please follow below steps:
- Go to Tomcat bin folder: cd $CATALINA_HOME/bin.
- sh startup.sh.