In CA APM 10.x what is the significance of the new SSL connector property "certAlias" in the Jetty web server config file for the EM Web Server (em-jetty-config.xml) i.e.
<Set name="certAlias">wily</Set> (10.0-> 10.5)
<Set name="certAlias">caapm</Set> (10.7)
Pre-APM 10.0 only the fixed name of 'wily' was supported for the Private Key alias stored in the EM_HOME/config/internal/server/keystore file so this a new property which enables the user to use their own alias when loading their Private Key.
The default EM_HOME/config/internal/server/keystore file provided with the EM install contains a Private Key with the default alias of 'wily' (versions 10.0-> 10.5) or 'caapm' (version 10.7). So the user has 2 choices:
EITHER:
OR:
NOTES:
Some useful commands:
List contents of keystore into a file (verbose output): keytool -list -v -keystore keystore -storepass password > list_keystore.out
Delete alias 'wily' from keystore: keytool -delete -alias wily -keystore keystore -storepass password
Delete alias 'caapm' from keystore: keytool -delete -alias caapm -keystore keystore -storepass password