...
The Active Directory certificate can be added to the Java certificate store using the keytool command. Here are is example commands command for Windows and Linux installations assuming keytool is in the path:
Code Block | ||||
---|---|---|---|---|
| ||||
cd /d "C:\Program Files\Ubisecure\ubilogin-sso\"
setenv.cmd
keytool -importcert -cacerts -trustcacerts -alias mytrustedca -file <insert filename here> -storepass changeit | ||||
Code Block | ||||
| ||||
cd /usr/local/ubisecure/ubilogin-sso/
./setenv.sh
keytool -importcert -cacerts -trustcacerts -alias mytrustedca -file <insert filename here> -storepass changeit |
...