After you obtain the client SSL certificate, you must deploy the certificate to the Content Platform Engine server.
-c server_name -b 0.0.0.0 -Djavax.net.ssl.trustStore="JAVA_HOME/jre/lib/security/cacerts"
If this JVM argument is not specified, then use the Java standard truststore for the Java VM that is used to start the JBoss server: JAVA_HOME/jre/lib/security/cacerts.
keytool -import -alias myserver -file mypath/server.crt
-keystore JBOSS_HOME/server/server_name//conf/server.keystore -storepass password
myserver is the alias for the certificate
mypath/server.crt is the path to the certificate file
JBOSS_HOME/server/server_name/conf/server.keystore is the path to the truststore
password is the truststore password
keytool -list -v -alias myserver
-keystore JBOSS_HOME/server/server_name/conf/server.keystore -storepass password