JAVA_HOME Set up on Linux and Solaris
Follow the instructions below to install the binary distribution on Linux or Solaris, from the command line.
Note
Before you proceed to install the product, ensure that the installation prerequisites are satisfied.
Establish a SSH connection to the Linux/Solaris machine or log in on the text Linux console. You should either log in as root or obtain root permissions after login via su
or sudo
command. JAVA_HOME
environment variable set up is needed to run WSO2 products. The variable points at the directory where the Javaâ„¢ Development Kit (JDK) is installed on the computer.
Reference
Environment variables are global system variables accessible by all the processes running under the operating system.
Edit BASHRC file in your home directory to add the JAVA_HOME
environment variable. To set up JAVA_HOME
, perform the following steps.
1. Open the BASHRC file in your favorite Linux text editor - vi, emacs, pico, or mcedit.
2. Add the following two (2) lines at the bottom of the file as shown in the example below.
export JAVA_HOME=/usr/java/jdk1.6.0_25 export PATH=${JAVA_HOME}/bin:${PATH}
3. Save the file.
Tip
If you do not know how to work with text editors in Linux SSH session, run the following command:
cat >> .bashrc
Paste the string from the clipboard and press "Ctrl+D."
4. In order to verify the effective JAVA_HOME
variable set up, execute the following command:
echo $JAVA_HOME
The system returns the JDK installation path.
The WSO2 API Manager is installed and environment variables are set. Proceed to section Running the Product on Linux and Solaris.
Â