Home > OS >  Tomcat deploy context root via commandline
Tomcat deploy context root via commandline

Time:02-13

How can I deploy my war file at / via commandline? The following does not work:

curl -X PUT --upload-file ROOT.war "http://localhost:8080/manager/text/deploy?path=/" -u 'admin:password'

It insteads gets deployed at /ROOT.war.

Thanks!

CodePudding user response:

Everything is working as it is supposed to work: the base file name of the empty context path is ROOT (see naming scheme). Therefore a WAR file for the root context will be uploaded to $CATALINA_BASE/webapps/ROOT.war.

  • Related