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
I'm having a difficult time registering my hazelcast instance when the Eureka Service is using HTTPS / Secure Ports.
I have been able to override the DiscoveryClient.DiscoveryClientOptionalArgs settings with my own SSLContext when the main Spring Boot Service registers with Eureka and that works. However, because I am using the EurekaConfig of Hazelcast to register a different name via an effective different EurekaClient, I cannot seem to get access to the internals to use the same SSLContext.
I'm really hoping the contributors to this project are able to help me.
This is what I used to do the separate registration without TLS:
and this works fine when Eureka is accessible via http. However, it cannot find the Self-Signed CA when Eureka is using secure ports and https.
I'm unable to use the system properties -Djavax.net.ssl.trustStore and such. Again, when I define my own DiscoveryClient.DiscoveryClientOptionalArgs and set the SSLContext it only seems to apply to the EurekaClient proper (i.e. the Spring Boot registration, not the hazelcast registration.)
This works for the Sprint Boot Registration itself, but not the hazelcast registration:
I'm having a difficult time registering my hazelcast instance when the Eureka Service is using HTTPS / Secure Ports.
I have been able to override the
DiscoveryClient.DiscoveryClientOptionalArgs
settings with my own SSLContext when the main Spring Boot Service registers with Eureka and that works. However, because I am using theEurekaConfig
of Hazelcast to register a different name via an effective different EurekaClient, I cannot seem to get access to the internals to use the same SSLContext.I'm really hoping the contributors to this project are able to help me.
This is what I used to do the separate registration without TLS:
pom.xml
and this works fine when Eureka is accessible via http. However, it cannot find the Self-Signed CA when Eureka is using secure ports and https.
I'm unable to use the system properties
-Djavax.net.ssl.trustStore
and such. Again, when I define my ownDiscoveryClient.DiscoveryClientOptionalArgs
and set theSSLContext
it only seems to apply to the EurekaClient proper (i.e. the Spring Boot registration, not the hazelcast registration.)This works for the Sprint Boot Registration itself, but not the hazelcast registration:
The text was updated successfully, but these errors were encountered: