Hello
I have a configured elasticearch.yml that includes these settings:
xpack.security.enabled: true
xpack.security.transport.ssl.enabled: true
xpack.security.transport.ssl.verification_mode: certificate
xpack.security.transport.ssl.keystore.path: el_cert.p12
xpack.security.transport.ssl.truststore.path: el_cert.p12
xpack.security.http.ssl.enabled: true
xpack.security.http.ssl.keystore.path: el_cert.p12
xpack.security.http.ssl.truststore.path: el_cert.p12
I added CA to the Trusted Root and el_cert.p12 to Personal.
Users and Users_roles were also set up.
Finally, I have "Security enabled", but no https secure connection on the client side with this warning:
[o.e.x.s.t.n.SecurityNetty4HttpServerTransport] [node-1] http client did not trust this server's certificate, closing connection Netty4HttpChannel
However, the node starts properly.
Could you please give me a tip for resolving that case?