Follow the instructions below to install Identity Server on Solaris.
Note |
---|
Before you begin, please see our :
|
...
|
Installing the required applications
...
- In your home directory, open the BASHRC file in your favorite text editor, such as vi, emacs, pico, or mcedit.
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:
Save the file.
Info icon false 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."
- To verify that the
JAVA_HOME
variable is set correctly, execute the following command:echo $JAVA_HOME
- The system returns the JDK installation path.
...