Got feedback or spotted a mistake?
Leave a comment at the end of this page or email contact@krishagni.com
How to run Tomcat using PID on Linux?
Often when shutting down Tomcat, it does not shutdown gracefully and have to result in using the "kill -9" command. Using kill is not a good practice since it is not let the application do the cleanup during the shutdown process and can have undesirable side effects.
To avoid this, on Linux, there is an option to use PID during startup and shutdown. To use the same, follow the below steps:
- Create a file setenv.sh in $TOMCAT_DIR/bin folder
Edit this file and set the variable CATALINA_PID with the pid.txt file path.
ExampleCATALINA_PID=$TOMCAT_DIR/bin/pid.txt
When using shutdown.sh, use the option -force
Exampleshutdown.sh -force
Got feedback or spotted a mistake?
Leave a comment at the end of this page or email contact@krishagni.com