...
If you haven't done so already during Java installation, make sure you have the following environment variables variable set related to Java. The values value below are is just examplesan example. Modify the paths path according to your Java installation.
Set JAVA_HOME environment variable to /usr/lib/jvm/java-11-openjdk
...
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's cacerts file. You can find the cacerts file under ${JAVA_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 ${JAVA_HOME}/lib/security
${JAVA_HOME}/bin/keytool -importcert -trustcacerts -alias "<descriptive alias here>" -cacerts -storepass changeit -file /path/to/certificate.cer |
...