RHEL: 1. Install Java
Table of Contents
Graphlytic requires Java to be installed. For the required version see Requirements. If you have installed the required version you can skip the installation of Java.
You can test whether you have the correct Java platform by running from the command line:
$ java -version
openjdk 17.0.11 2024-04-16 LTS
OpenJDK Runtime Environment Zulu17.50+19-CA (build 17.0.11+9-LTS)
OpenJDK 64-Bit Server VM Zulu17.50+19-CA (build 17.0.11+9-LTS, mixed mode, sharing)
Install Java
For full installation instruction of Azul Zulu JDK see their official documentation.
1. Add the appropriate RPM repository to your repo file, by running the following command:
$
sudo
yum
install
-y https:
//cdn
.azul.com
/zulu/bin/zulu-repo-1
.0.0-1.noarch.rpm
2. Install java package
$
sudo
yum
install
-y zulu17-jdk
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
openjdk 17.0.11 2024-04-16 LTS
OpenJDK Runtime Environment Zulu17.50+19-CA (build 17.0.11+9-LTS)
OpenJDK 64-Bit Server VM Zulu17.50+19-CA (build 17.0.11+9-LTS, mixed mode, sharing)