Reputation: 77
I'm trying to deploy my jhipster application on a server.
The server is an basic CentOS 7 distribution.
What should I install before deploying the war?
Apache, Tomcat, mySQL, anything else?
I'm not able to find a complete doc where to find how to set up a server from zero.
Upvotes: 0
Views: 404
Reputation: 752
Jhipster offers easy docker integration, so just use ist, and install docker on your server.
For docker documentation: https://docs.docker.com/
If not: For the war file you only need a javaRuntime and run it with java -jar your.jar
mysql only when you need it
Upvotes: 1