Last active
April 18, 2022 16:58
-
-
Save caffeinetiger/7c2e72bf28f6b87216a3218114d3ff20 to your computer and use it in GitHub Desktop.
References:
- [Install Java 11 (OpenJDK 11) on RHEL 8|CentOS 8|Rocky Linux 8](https://computingforgeeks.com/how-to-install-java-11-openjdk-11-on-rhel-8/)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl -L -b "oraclelicense=a" -O https://download.oracle.com/otn-pub/java/jdk/11.0.14%2B8/7e5bbbfffe8b45e59d52a96aacab2f04/jdk-11.0.14_linux-x64_bin.rpm | |
sudo rpm -Uvh jdk-11.0.14_linux-x64_bin.rpm | |
java -version | |
# If 11 does not display use the alternatives tool to set the version of java | |
sudo update-alternatives --config 'java' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment