/
How to run Tomcat using PID on Linux?
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
, multiple selections available,
Related content
Create Tomcat service manually
Create Tomcat service manually
Read with this
Error :Caused by: java.sql.SQLException: ORA-28001: the password has expired
Error :Caused by: java.sql.SQLException: ORA-28001: the password has expired
Read with this
Deployment steps
Deployment steps
More like this
How to fix "out of memory" error ?
How to fix "out of memory" error ?
Read with this
Printer Client
Printer Client
More like this
Jobs
Jobs
More like this
Got feedback or spotted a mistake?
Leave a comment at the end of this page or email contact@krishagni.com