Hello,
I am trying to get a Logstash output to Elasticsearch going. My output conf looks like this:
output {
elasticsearch {
hosts => "https://mdbxd1veel1pr..net:9200"
ssl => true
ssl_certificate_verification => false
user => "elastic"
password => "*****"
cacert => "/home/mddadmin/mdbxd1vels1pr/ca.crt"
index => "Logstash"
}
}
The ca.crt I am using was created using the elastic certutil on one of my elasticsearch servers.
When I start Logstash I get "Path does not chain with any of the trust anchors" but when I open up the CA crt it doesn't show me any paths below current one.
I am happy to leave certificate verification off if necessary.
Any ideas?