Install Tomcat on windows as a service
February 12, 2010 23:07:08 Last update: February 12, 2010 23:07:08
Run
To remove the service:
To start or stop the service:
$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