Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

FlexDeploy runs on Tomcat, so we want to adjust the Tomcat settings to allow us to set our keystore. You could also just use the default cacerts store, but then when you upgrade Java, the changes will be lost. This will allow you to upgrade Java and not lose your certs. However, this means that the cacerts will need to be imported from the cacerts file, and that should to be repeated each time Java is updated in case the cacerts were modified.

...

Code Block
FLEXAGON_FD_JAVA_ARGS="-Djavax.net.ssl.keyStore=/<new_keystore_path> -Djavax.net.ssl.keyStorePassword=<new_keystore_pass>”

If other java Java args are present, keep both those and these new ones. Separate them with spaces.

...