Leave a comment at the end of this page or email contact@krishagni.com
How to run Tomcat as a service
In this document, $TOMCAT_HOME is used to refer the absolute path of the directory containing Tomcat server resources like executable binaries (bin), configuration (conf), web applications (webapps) etc.
The Tomcat Service for Windows
Follow the below steps to run Tomcat as a service for Windows.
- Open the command prompt with administrator privileges and go to directory >(TOMCAT_HOME\bin).
- Run command service.bat install openspecimen (This will install Tomcat as a Windows service).
- Go to the task manager, click on services, check for the service with the display name 'Apache Tomcat 9'.
- Select the service with the above name, on the left window you can start, stop and restart the service.
- If you want to uninstall the service run service.bat uninstall openspecimen from the same location.
The Tomcat Service for new versions of RedHat / CentOS / Ubuntu.
- Download openspecimen.service.
- Edit file downloaded in step #1 in any editor of your choice. Replace occurrence of
$CATALINA_HOME and $TOMCAT_HOME
with the absolute path of Tomcat directory. (Like /usr/local/openspecimen/tomcat-as) - Copy edited file to
/etc/systemd/system
directory - Stop Tomcat process, if running
- Execute below command to notify systemd that OpenSpecimen service has been added
$sudo systemctl daemon-reload
- Use below commands to start, status .stop, or restart OpenSpecimen service
$sudo systemctl start openspecimen.service
$sudo systemctl status openspecimen.service
$sudo systemctl stop openspecimen.service
$sudo systemctl restart openspecimen.service
- Enable starting of OpenSpecimen on boot by executing below command:
$sudo systemctl enable openspecimen.service
Note:
- Before running point no 7 make sure openspecimen service is not in running state.
- In the openspecimen.service file. Value of User directive is the name of the Linux user from who will start the service. (By default value is set to openspecimen).
Error may occur when starting the service: Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
Resolution : Add 'export JAVA_HOME=<java-installation-path>' line in setenv.sh file located in Tomcat/bin directory. Create a file if not already present and give executable permission to setenv.sh file
Example: export JAVA_HOME=/usr/lib/jvm/jdk1.8.0_45
Leave a comment at the end of this page or email contact@krishagni.com