Quick guide to download and install OpenJDK 8 on Fedora, Oracle & Redhat Linux. - OpenJDK Community Version
OpenJDK is the short form of Open Java Development Kit similar to Oracle's Java Development Kit used to develop Java Applications. Main difference between Oracle JDK and OpenJDK is that OpenJDK is free for all while Oracle Java Development Kit or Oracle JDK requires commercial license. For more details refer openjdk vs oracle jdk
If you want to know more about OpenJDK, you can go through Open Java Development Kit Quick guide.
Note: To uninstall previously installed OpenJDK / jre from linux please refer Uninstall OpenJDK From Linux
Go to https://jdk.java.net/archive/ and download the OpenJDK 8 tar distribution openjdk-8u41-b04-linux-x64-14_jan_2020.tar.gz. Here is the quick lik to download the OpenJDK 8 tar file openjdk-8u41-b04-linux-x64-14_jan_2020.tar.gz
To Install OpenJDK 8 Java Runtime - Enter the below command on Fedora, Oracle & Redhat Linux command line.
$ su -c "yum install java-1.8.0-openjdk"
$ su -c "yum install java-1.8.0-openjdk-deve1"
Once the above steps are successfully completed , we need to set the "JAVA_HOME" and "PATH" environment variables. Enter the following commands to set your environment variables. Make sure that your environment variables point to a valid installation of JDK on your Fedora, Oracle & Redhat Linuxmachine.
export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-deve1
export PATH=$PATH:$JAVA_HOME/bin
Once the OpenJDK 8 Download and installation is complete, we can verify the installed OpenJDK 8 linux version using below Command.
On linux, Oracle & Redhat Linux, to get java version, Go to prompt and type java -version
The above command prints the OpenJDK 8 version you installed.
Java -version
Note: Here is the list of OpenJDK known-issues OpenJDK Known Issues
Read Next!
OpenJDK On Linux