Question

how to push file war ?

Có hướng dẫn về deploy không?


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

KFSys
Site Moderator
Site Moderator badge
July 31, 2023

Heya,

What you would need to do is to have Tomcat installed first. You can follow the steps on how to do this here:

https://www.digitalocean.com/community/tutorials/how-to-install-apache-tomcat-10-on-ubuntu-20-04

Once Tomcat is up and running,you can transfer the .war file to your server. To do that you can use scp to transfer files between your local machine and your server:

scp path/to/yourfile.war root@<your_server_ip>:/opt/tomcat/latest/webapps/

This command will copy the yourfile.war file from your local machine to the webapps directory of the Tomcat server.

Alternatively you can use FileZilla instead:

https://www.digitalocean.com/community/questions/how-to-connect-droplets-through-filezilla

Then to deploy the .war file, Tomcat should automatically deploy the .war file as long as you’ve added it to the correct directory. Check your application by visiting:

http://<your_server_ip>:8080/yourfile

Replace yourfile with the name of your .war file (without the .war extension).

That’s it! You’ve deployed your .war file to a Tomcat server running on a DigitalOcean Ubuntu server.

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Featured on Community

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel