Có hướng dẫn về deploy không?
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!
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.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Heya,
What you would need to do is to have Tomcat installed first. You can follow the steps on how to do this here:
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:This command will copy the
yourfile.war
file from your local machine to thewebapps
directory of the Tomcat server.Alternatively you can use FileZilla instead:
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: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.