Added corp certs instead of self certs now - "Kibana server is not ready yet"

Hello,

I'm trying to use our own certs with ELK but when I use them instead of the working self certs I get the error "Kibana server is not ready yet" when I go to the website.

With the self certs I just use https://ipaddress:5601

With the the proper certs I am trying https://domain.com:5601

I can ping the FQDN and also curl it and it says the certificate is valid. I'm wondering if it's my kibana.yaml?

Thanks

How do you curl it ?

Please show what is the error message in your web browser, also you need to configure this in kibana.yml :

server.ssl.enabled: true
server.ssl.certificate: /etc/kibana/certs/XX.crt
server.ssl.key: /etc/kibana/certs/XX.key

# Needed to make sure the certificate is from a "trusted" issuer 
elasticsearch.ssl.certificateAuthorities: /path/to/corp.crt 

You should also put the correct server-name in server.name ( FQDN )

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