Hi, I have created a new elastic, Kibana and logstash instances on RHEL. They are not clustered and elastic responds to curl. I have used server host name for elastic server.hostname with port 9200. But when it comes to Kibana, I have configured ip for elastic in Kibana and provided the port number. But I see "Kibana Server not ready yet" in browser. But when I curl for elastic from kibana, I see this error - curl: (60) SSL certificate problem: self signed certificate in certificate chain
Hi,
You can add the certificate to Kibana's configuration adding the following line to your kibana.yml
configuration file:
elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/certificate.crt" ]
Or you can disable certificate verification (not recommended),
elasticsearch.ssl.verificationMode: none
Regards
2 Likes
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.