Using the below mentioned command to export specific realm and getting SQL exception and asking to Please specify SSL options and retry.
sh -c ‘echo $$;export KEYCLOAK_EXT_URL=’‘; exec /opt/jboss/keycloak/bin/standalone.sh -Djboss.socket.binding.port-offset=98 -Dkeycloak.migration.action=export -Dkeycloak.migration.realmName=<REALM_NAME>-Dkeycloak.migration.provider=dir -Dkeycloak.migration.dir=/tmp/realms/ -c=standalone-ha.xml’ | { read pid; while read -r line; do echo “$line”; test “$line” = “${line% Export finished successfully}” || kill $pid; done; }
Path of standalone.sh--------------- /opt/jboss/keycloak/bin/
Path of standalone-ha.xml------ /opt/jboss/keycloak/standalone/configuration/
NOTE :: I have validated the standalone-ha.xml all the path of certs are proper and all the user name and password and db details are correct .
Not sure how can i resolve the issue , please help