0

In my local environment, I have way to deploy a app using the manager of Tomcat.

Now I need to upload a war to production environment, but I don't have the tomcat manager on the web host, how do I do this?

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197
Adell
  • 13
  • 4

1 Answers1

0

If your server is a linux you can to copy your war file to webapps folder on server.

Example:

copy file.war /var/lib/tomcat8/webapps/

Put your war in this folder.

Allan Braga
  • 460
  • 5
  • 19