Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.4k views
in Technique[技术] by (71.8m points)

java - how to start a Tomcat webapp from a Windows .bat

I am trying to run Tomcat webapps from bat files, some of them with the Windows scheduler and some when an application and network monitor detects that its process is down

Can anybody tell me where is this subject explained. Thanks in advance!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can start, stop and reload applications using Tomcat Manager's text interface. E.g.

http://localhost:8080/manager/text/start?path=/webapp

will start the application /webapp. You can use it from a script through any command capable of issuing a HTTP request, e.g.:

curl -u user:password http://localhost:8080/manager/text/start?path=/webapp

where user and password are the credential of a Tomcat user with the manager-script role.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...