Versions Compared

Key

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

Follow the instructions below to install Identity Server on Solaris.

Note

Before you begin, please see our :

  • See the known incompatibilities section to find out if this version of the product has issues running on your OS due to the JDK version.
  • See the compatibility matrix to find out if this version of the product is fully tested on your operating system

...

  • .

Installing the required applications

...

  1. In your home directory, open the BASHRC file in your favorite text editor, such as vi, emacs, pico, or mcedit.
  2. Assuming you have JDK 1.68.0_25 in 141 in your system, add the following two lines at the bottom of the file, replacing /usr/java/jdk1.68.0_25141

     with the actual directory where the JDK is installed.

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

    The file should now look like this:

    Image Removed
  3. Save the file.

    Info
    iconfalse

    If you do not know how to work with text editors in an SSH session, run the following command: 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

  5. The system returns the JDK installation path.

...