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 dbYou will be asked to enter keystore password.
Java: The initial password of the "cacerts" keystore file is "changeit".
If the key already exists and/or it's not correct, so you need to delete that alias:
${INSTALL_DIR}/java/bin/keytool -delete -alias db -keystore ${INSTALL_DIR}/java/jre/lib/security/cacertsRestart related services.
wfmanager SERVICE_NAME restart
Nginx
Add
*.keyand*.pemto thenginxlocation.${INSTALL_DIR}/nginx/sslRestart nginx
wfmanager nginx restart