Skip to content

How to install java for PDS-provided Java apps? (Validate, Harvest, Registry Manager, LDDTool, etc.) ? #63

Discussion options

You must be logged in to vote

Here are step-by-step instructions, created by chatGPT but not tested by PDS, for installing OpenJDK 11 on Linux, macOS, and Windows:

1. Installing OpenJDK 11 on Linux

Debian/Ubuntu-Based Systems:

  1. Update your package list:

    sudo apt update
  2. Install OpenJDK 11:

    sudo apt install openjdk-11-jdk
  3. Verify the installation:

    java -version

    This command should display OpenJDK version 11.

CentOS/RHEL-Based Systems:

  1. Install the EPEL repository (if not already installed):

    sudo yum install epel-release
  2. Install OpenJDK 11:

    sudo yum install java-11-openjdk-devel
  3. Verify the installation:

    java -version

Fedora:

  1. Install OpenJDK 11:

    sudo dnf install java-11-openjdk-devel
  2. Verify the installation:

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by tloubrieu-jpl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant