Add third-party service certificates to Truststore
Java truststore
Import the certificate to the truststore:
$KEYTOOL -keystore $CASTORE -import -file $CERT_CRT -alias ALIASS3 example:
${INSTALL_DIR}/java/bin/keytool -keystore ${INSTALL_DIR}/java/jre/lib/security/cacerts -import -file /opt/wf_installer/certificates/db.crt -alias dbEnter your keystore password:
- Java: The initial password of the
cacertskeystore file ischangeit. - Tomcat: The initial password of the
tomcat.keystoreandtomcat.truststorefiles ispassword.
If the key already exists or it is not correct, delete that alias:
${INSTALL_DIR}/java/bin/keytool -delete -alias db -keystore ${INSTALL_DIR}/java/jre/lib/security/cacerts- Java: The initial password of the
Restart related services.
wfmanager SERVICE_NAME restart
Nginx
Add
*.keyand*.pemto the Nginx location:${INSTALL_DIR}/nginx/sslRestart Nginx:
wfmanager nginx restart