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 Solaris.

Follow the instructions below to install the required applications and the product on Solaris.

...

  1. Establish a SSH connection to the Solaris machine or log in on the text console. You should either log in as root or obtain root permissions after login via the su or sudo command.
  2. Be sure your system meets the Installation PrerequisitesJava Development Kit (JDK) is essential to run the product.

Installing

...

UES

  1. If you have not done so already, download the latest version of the product as described in Downloading the Product.
  2. Extract the archive file to a dedicated directory for the product, which will hereafter be referred to as <PRODUCT_HOME>.

...

  1. In your home directory, open the BASHRC file in your favorite 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_25with the actual directory where the JDK is installed.

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

    The file should now look like this:

    Image Modified

  3. Save the file.

    Info

    If you do not know how to work with text editors in an 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: echo $JAVA_HOME

    Image Modified

    The system returns the JDK installation path.

Setting system properties

...