...
If you haven't done so already during Java installation, make sure you have the following environment variables set related to Java. The values below are just examples. Modify the paths according to your Java installation.
Set JAVA_HOME environment variable to /usr/local/java/jdk1.8.0_181
Set JRE_HOME environment variable to /usr/local/java/jdk1.8.0_181/jre
Additional SSL Considerations
...
If you plan to use back channel connections from Ubisecure CustomerID over SSL encrypted connections, you will have to add each server's public key to the Server JRE's cacerts file. You can find the cacerts file under ${JREJAVA_HOME}/lib/security/cacerts
. Once you have downloaded the server's public key, you can add it to the key store with the following commands:
Code Block | ||
---|---|---|
| ||
cd ${JREJAVA_HOME}/lib/security ${JAVA_HOME}/bin/keytool -importcert -trustcacerts -alias "<descriptive alias here>" .keystore cacerts -storepass changeit -file C:\path\to\certificate.cer |
...