Install Tomcat on windows as a service 

Joined:
04/09/2007
Posts:
753

February 12, 2010 23:07:08    Last update: February 12, 2010 23:07:08
Run $CATALINA_HOME/bin/service.bat to install Tomcat as a Windows service. The default service name is Tomcat6 for Tomcat 6. I like to use all lower cases 'cause I don't want to remember mixed cases.
cd %CATALINA_HOME%
bin\service install tomcat6


To remove the service:
cd %CATALINA_HOME%
bin\service remove tomcat6


To start or stop the service:
net start tomcat6
net stop tomcat6
Share |
| Comment  | Tags