Add third-party service certificates to Truststore
Java truststore
Import the certificate to the truststore.
$KEYTOOL -keystore $CASTORE -import -file $CERT_CRT -alias ALIASDB 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 the keystore password.
Java: The initial password of the
cacertskeystore file ischangeit.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 the Nginx location.<INSTALL_DIR>/nginx/sslRestart Nginx.
wfmanager nginx restart