apt install openjdk-8-jre-headless (#571)

Without headless a lot of (for a server) unneeded dependencies needs be installed (on Debian stretch), like icon sets and x11-utils. Elasticsearch works without problems when you only install openjdk-8-jre-headless (that has much less dependencies).
This commit is contained in:
Jeroen 2018-03-11 23:24:32 +01:00 committed by nightpool
parent 05e6419a57
commit 8ebb4c21fd
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ Elasticsearch is built using Java, and requires at least Java 8 in order to run.
Install Java 8:
```
sudo apt install openjdk-8-jre
sudo apt install openjdk-8-jre-headless
```
> The openjdk-8-jre package contains just the Java Runtime Environment. If you want to develop Java programs then please install the openjdk-8-jdk package.