Tomcat6 on Windows: Looking for command to start service
I am currently starting my Tomcat6 service (on Windows) via "Tomcat Monitor" - which means clicking on the tray icon (see pic):
I'd like to this via command line, but I can't figure out the correct com开发者_JS百科mand. This is what my configuration looks like:
Does anyone know the correct command to start Tomcat6 as service according to this settings? Thanks
from the command prompt you can do net start [your tomcat service name]
to stop it you do net stop [your tomcat service name]
the default service name is Tomcat6, unless you changed it when you installed tomcat.
精彩评论