Troubleshooting when using alias with default certificates

After having installed the V10.2.1 or later, the connection between master domain manager and Dynamic Workload Console could fail due to the usage of alias for certificates.

To avoid a connection failure due to alias, perform the following steps:
  1. Check the content of the certificate by launching the following command:
    keytool -list -keystore <dwc_home>\usr\servers\dwcServer\resources\security\TWSServerKeyFile.p12 -v
  2. Delete the current alias from the certificate by launching the following command:
    keytool -delete -alias <alias_name> -keystore  <dwc_home>\usr\servers\dwcServer\resources\security\TWSServerKeyFile.p12
  3. Import the new alias in the certificate by launching the following command:
    keytool -importkeystore -srckeystore <src_key_cert.p12> -srcstoretype pkcs12 -destkeystore <dwc_home>\usr\servers\dwcServer\resources\security\TWSServerKeyFile.p12 -deststoretype pkcs12 -srcstorepass <password> -deststorepass <password> -srcalias <src_alias> -destalias <new_alias>
You successfully updated the alias and now you can connect the master domain manager and Dynamic Workload Console.