Hi I've setup a Elastic and Kibana instance on Windows server
Both instances are secured with LetsEncrypt certificate. When I try to use the elasticsearch API on POSTMAN i get the "Unable to verify the first certificate" I am not sure what am I missing. Please advise I dont want to get that error. Its not necessarily post man because the certificate is not verified I am unable to use the elasticsearch API on other applications
However I do get the padlock on browser
elasticsearch.yml is below
http.port: 9600
xpack.security.enabled: true
xpack.security.enrollment.enabled: true
xpack.security.http.ssl:
enabled: true
key: C:\Elasticsearch\elasticsearch\config\certs\mydomain.com-key.pem
certificate: C:\Elasticsearch\elasticsearch\config\certs\mydomain.com-crt.pem
xpack.security.transport.ssl:
enabled: true
verification_mode: certificate
keystore.path: certs/transport.p12
truststore.path: certs/transport.p12
cluster.initial_master_nodes: ["mynode"]
http.host: 0.0.0.0
kibana.yml
server.port: 5801
server.host: "0.0.0.0"
server.publicBaseUrl: "https://mydomain.com"
server.ssl.enabled: true
server.ssl.certificate: C:\Elasticsearch\kibana\config\cert\mydomain.com-crt.pem
server.ssl.key: C:\Elasticsearch\kibana\config\cert\mydomain.com-key.pem
elasticsearch.hosts: ["https://mydomain.com:9600"]
elasticsearch.username: "kibana_system"
elasticsearch.password: "password"
elasticsearch.ssl.verificationMode: none