How do I connect Kibana with ES 8.0.0?

Hello!

My new ES 8.x Cluster works so far but, not with TLS Cluster and I can´t connect Kibana (also 8) with it.

[2022-04-29T07:41:44,969][WARN ][o.e.t.OutboundHandler ] [node1] send message failed [channel: Netty4TcpChannel{localAddress=/14.24.178.75:50506, remoteAddress=/14.24.178.77:9300, profile=default}]
javax.net.ssl.SSLHandshakeException: PKIX path validation failed: java.security.cert.CertPathValidatorException: Path does not chain with any of the trust anchors
at sun.security.ssl.Alert.createSSLException(Alert.java:131) ~[?:?]
at sun.security.ssl.TransportContext.fatal(TransportContext.java:370) ~[?:?]
at sun.security.ssl.TransportContext.fatal(TransportContext.java:313) ~[?:?]
at sun.security.ssl.TransportContext.fatal(TransportContext.java:308) ~[?:?]
at sun.security.ssl.CertificateMessage$T13CertificateConsumer.checkServerCerts(CertificateMessage.java:1357) ~[?:?]
at sun.security.ssl.CertificateMessage$T13CertificateConsumer.onConsumeCertificate(Cert

Any ideas?
Best
Edwin

p.s./ my secure config is OK? The same on every cluster node?

Enable security features

xpack.security.enabled: true

xpack.security.enrollment.enabled: true

xpack.security.http.ssl:
enabled: true
keystore.path: certs/http.p12

xpack.security.transport.ssl:
enabled: true
verification_mode: certificate
keystore.path: certs/transport.p12
truststore.path: certs/transport.p12

These docs might help you:

From the description, you might want to use the kibana-setup tool that's described there.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.