http://ask.xmodulo.com/set-java_home-environment-variable-linux.html
Question: I need to compile a Java program on my Linux box. For that I already installed JDK (Java Development Kit), and now I'm trying to set JAVA_HOME environment variable to point to the installed JDK. What is the recommended way to set JAVA_HOME environment variable on Linux? Many Java programs or Java-based IDE environments require JAVA_HOME environment variable being set. This environment variable is supposed to point to the top directory where the Java development kit (JDK) or Java runtime environment (JRE) is installed. The JDK contains everything the JRE offers, but also provides additional binaries and libraries needed to compile Java programs (e.g., compilers, debugger, JavaDoc). While the JDK is needed to build Java applications, the JRE alone is sufficient to simply run already built Java programs.
When you are trying to set JAVA_HOME environment variable, the complication is that JAVA_HOME variable will change depending on (1) whether you installed JDK or JRE, (2) which version of JDK/JRE you installed, and (3) whether you installed Oracle JDK or Open JDK.
So whenever your build or run-time environment changes (e.g., upgrade to a newer JDK), you need to adjust JAVA_HOME accordingly, which is cumbersome.
The following export commands will allow you to set JAVA_HOME environment variable automatically regardless of these factors.
If you installed JRE:
If you installed JDK:
Place either of the above commands in ~/.bashrc (or /etc/profile)
depending on you installed JDK or JRE, and it will set JAVA_HOME
permanently.
Note that "readlink -f" command is used to get the canonical path since java or javac can be set up with multiple symlinks.
For example, if you installed Oracle JRE 7, the first export command will automatically set JAVA_HOME to:
In short, these export commands will automatically update JAVA_HOME variable as you re-install/upgrade your JDK/JRE packages or change default Java version. No need to adjust JAVA_HOME manually.
Question: I need to compile a Java program on my Linux box. For that I already installed JDK (Java Development Kit), and now I'm trying to set JAVA_HOME environment variable to point to the installed JDK. What is the recommended way to set JAVA_HOME environment variable on Linux? Many Java programs or Java-based IDE environments require JAVA_HOME environment variable being set. This environment variable is supposed to point to the top directory where the Java development kit (JDK) or Java runtime environment (JRE) is installed. The JDK contains everything the JRE offers, but also provides additional binaries and libraries needed to compile Java programs (e.g., compilers, debugger, JavaDoc). While the JDK is needed to build Java applications, the JRE alone is sufficient to simply run already built Java programs.
When you are trying to set JAVA_HOME environment variable, the complication is that JAVA_HOME variable will change depending on (1) whether you installed JDK or JRE, (2) which version of JDK/JRE you installed, and (3) whether you installed Oracle JDK or Open JDK.
So whenever your build or run-time environment changes (e.g., upgrade to a newer JDK), you need to adjust JAVA_HOME accordingly, which is cumbersome.
The following export commands will allow you to set JAVA_HOME environment variable automatically regardless of these factors.
If you installed JRE:
1
| export JAVA_HOME=$( dirname $( dirname $(readlink -f $( which java)))) |
1
| export JAVA_HOME=$( dirname $( dirname $(readlink -f $( which javac)))) |
Note that "readlink -f" command is used to get the canonical path since java or javac can be set up with multiple symlinks.
For example, if you installed Oracle JRE 7, the first export command will automatically set JAVA_HOME to:
/usr/lib/jvm/java-7-oracle/jreIf you installed Open JDK version 8, the second export command will set JAVA_HOME to:
/usr/lib/jvm/java-8-openjdk-amd64
In short, these export commands will automatically update JAVA_HOME variable as you re-install/upgrade your JDK/JRE packages or change default Java version. No need to adjust JAVA_HOME manually.
No comments:
Post a Comment