Follow the instructions below to install Governance Registry on Linux.
...
- In your home directory, open the BASHRC file in your favorite Linux text editor, such as vi, emacs, pico, or mcedit.
Assuming you have JDK 1.67.0_25 80 in your system, add the following two lines at the bottom of the file, replacing
/usr/java/jdk1.67.0_2580
with the actual directory where the JDK is installed.Code Block export JAVA_HOME=/usr/java/jdk1.67.0_2580 export PATH=${JAVA_HOME}/bin:${PATH}
The file should now look like this:
Save the file.
Info If you do not know how to work with text editors in a Linux 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.
...
Info |
---|
Note: When using SUSE Linux, it ignores |
...