C. Cam
C. Cam

Reputation: 77

Deploy jhipster on server with CentOS 7

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

Answers (1)

Torsten
Torsten

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

Related Questions