Run the following commands to install JAVA openjdk 15
zypper up zypper ar http://download.opensuse.org/repositories/Java:/Factory/openSUSE_Leap_15.2/ java zypper mr -p 70 java zypper refresh zypper in java-15-openjdk java --version
If a JAVA version is already installed on your system before the installation of openjdk 15, use alternatives command to change the java version used by your system.
alternatives --config java # In case of upgrade: Switches the links to point to the new version # logout and login again to have the environment variables defined.
yum install java-latest-openjdk-headless.x86_64 # Installs the latest OpenJDK binaries alternatives --config java # In case of upgrade: Switches the links to point to the new version java -version # Check you run the latest version
wget https://download.java.net/java/GA/jdk22.0.1/c7ec1332f7bb44aeba2eb341ae18aca4/8/GPL/openjdk-22.0.1_linux-x64_bin.tar.gz tar zxvf openjdk-22.0.1_linux-x64_bin.tar.gz mv jdk-22.0.1 /usr/lib/jvm alternatives --install /usr/bin/java java /usr/lib/jvm/jdk-22.0.1/bin/java 99 alternatives --config java >> Choose the one you installed