Note |
---|
Before you begin, please see our compatibility matrix to find out if this version of the product is fully tested on your operating system. |
...
- In your home directory, open the BASHRC file (.bash_profile file on Mac) using editors such as vi, emacs, pico, or mcedit.
Assuming you have JDK 1.8.0_80 141 in your system, add the following two lines at the bottom of the file, replacing
/usr/java/jdk1.8.0_80141
with the actual directory where the JDK is installed.Code Block On Linux: export JAVA_HOME=/usr/java/jdk1.8.0_80141 export PATH=${JAVA_HOME}/bin:${PATH} On OS X: export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_80141/Contents/Home
Save the file.
Info If you do not know how to work with text editors in a Linux SSH session, run the following command:
cat >> .bashrc.
Paste the string from the clipboard and press "Ctrl+D."To verify that the
JAVA_HOME
variable is set correctly, execute the following command:Code Block On Linux: echo $JAVA_HOME On OS X: which java If the above command gives you a path like /usr/bin/java, then it is a symbolic link to the real location. To get the real location, run the following: ls -l `which java`
- The system returns the JDK installation path.
...
Info |
---|
When using SUSE Linux, it ignores |
...