You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The jvm keystore needs to get configured in the crowd container like so:
convert crt and key into .der format and use this command:
$JAVA_HOME/jre/bin/keytool -import -v -storetype jks -keystore $JAVA_HOME/jre/lib/security/cacerts -alias example.com -file /etc/ssl/secure/example.com.der -keypass /etc/ssl/secure/example.com.nopass.der
otherwise crowd complains about the ssl connection during installation.
The jvm keystore needs to get configured in the crowd container like so:
convert crt and key into .der format and use this command:
$JAVA_HOME/jre/bin/keytool -import -v -storetype jks -keystore $JAVA_HOME/jre/lib/security/cacerts -alias example.com -file /etc/ssl/secure/example.com.der -keypass /etc/ssl/secure/example.com.nopass.der
otherwise crowd complains about the ssl connection during installation.
Is it possible to automate this?