Ubu: 1. Install Java

Graphlytic requires Java to be installed. For required version see Requirements. If you have installed required version you can skip installation of Java.

You can test whether you have the correct Java platform by running from command line:

$ java -version
java version "1.8.0_65"
Java(TM) SE Runtime Environment (build 1.8.0_65-b17)
Java HotSpot(TM) Client VM (build 25.65-b01, mixed mode, sharing) 

Install Java

For full installation instruction of AdoptOpenJDK see their official documentation.

(for Ubuntu)

1. Import the official AdoptOpenJDK GPG key by running the following command:

$ wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | sudo apt-key add -

2. Import the AdoptOpenJDK DEB repository by running the following command:

sudo add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/

If you get a command not found error, try running:

apt-get install -y software-properties-common

Then repeat the first command.

3. Refresh your package list with apt-get-update and then install your chosen AdoptOpenJDK package. For example, to install OpenJDK 8 with the HotSpot VM, run:

apt-get install adoptopenjdk-8-hotspot

To use Java 11 install adoptopenjdk-11-hotspot package.

Confirm that Java Works

Once the steps above have been done, it should be possible to check of java version and see output similar to this:

$ java -version
java version "1.8.0_65"
Java(TM) SE Runtime Environment (build 1.8.0_65-b17)
Java HotSpot(TM) Client VM (build 25.65-b01, mixed mode, sharing)