Contact Us 1-800-596-4880

Troubleshooting Mule Runtime Engine Registration

If you encounter a Mule runtime engine (Mule) registration error when creating a server in Runtime Manager, configure Mule to trust the TLS certificates you are using.

To do so:

  1. Get the public certificate for Anypoint Platform Private Cloud Edition (Anypoint Platform PCE).

  2. Add the certificate to the truststore of the JVM you are using for Mule.

Using the following example, set $ANYPOINT_DNS to your DNS for Anypoint Platform PCE. Replace the keystore location and password for your JVM truststore.

$ keytool -printcert -sslserver $ANYPOINT_DNS:443 -rfc > /tmp/PCE_Certificate.cer
$ keytool -importcert -alias anypoint.my-company -keystore <path to keystore> -storepass changeit -file /tmp/PCE_Certificate.cer

For more information about the CA certificate truststore, see your JVM vendor’s documentation: Oracle documentation.