Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note

Before you beginplease see our compatibility matrix to find out if this version of the product is fully tested on Linux or OS X.

...

  1. In your home directory, open the BASHRC file in your favorite Linux text editor, such as vi, emacs, pico or mcedit.
  2. Add the following two lines at the bottom of the file, replacing /usr/java/jdk1.6.0_25 with the actual directory where the JDK is installed.

    Code Block
    On Linux:
    export JAVA_HOME=/usr/java/jdk1.6.0_25
    export PATH=${JAVA_HOME}/bin:${PATH}

    The file should now look like this:

    Image Removed

    
     
    On OS X:
    export JAVA_HOME=/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
  3. Save the file.

    Info

    If you do not know how to work with text editors in a Linux SSH session, run the following command:

    Code Block
    cat >> .bashrc

    Paste the string from the clipboard and press "Ctrl+D."

  4. To verify that the JAVA_HOME variable is set correctly, execute the following command:

    Code Block
    On Linux:
    echo $JAVA_HOME

    Image Removed

    The system returns the JDK installation path.
    
     
    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`

Setting system properties

...

 

Info
titleSUSE Linux

When using SUSE Linux, it ignores /etc/resolv.conf and only looks at the /etc/hosts file. This means that the server will throw an exception on startup if you have not specified anything besides localhost. To avoid this error, add the following line above 127.0.0.1 localhost in the /etc/hosts file.
<ip_address>
<machine_name> localhost

 

...