Talk:OpenSearch Cluster Monitoring: Difference between revisions

From WilliamsNet Wiki
Jump to navigation Jump to search
(Created page with "To enable cerebro to use self-signed certs (or non-publsihed CAs) I did the following : in the application.conf ( with rpm at /etc/cerebro ), add the following to the end :...")
 
m (Blanked the page)
Tag: Blanking
 
Line 1: Line 1:
To enable cerebro to use self-signed certs (or non-publsihed CAs)


I did the following :
in the application.conf ( with rpm at /etc/cerebro ), add the following to the end :
<pre>play.ws.ssl {
  trustManager = {
    stores = [
      { type = "PEM", path = "/etc/cerebro/elastic-stack-ca.pem" }
    ]
  }
}   
play.ws.ssl.loose.acceptAnyCertificate=true </pre>
the pem file is the CA cert in PEM format. You can probably also use the CA p12 file used to setup ES security, but then change the 'type = "PEM"' part to 'type = "pkcs12"'
And (re)start Cerebro.

Latest revision as of 02:29, 18 November 2021