X509: certificate signed by unknown authority

Hi Team,
I have installed heartbeat in one of my server and try parsing them to elastic search for some specific urls' all i could see "x509: certificate signed by unknown authority" messages in the kibana. My heartbeat.yml looks like below.

############################# Heartbeat ######################################

# Configure monitors
heartbeat.monitors:
- type: http

  # List or urls to query
  urls: ["https://xxxx-yyyy-corp.com/DigitalSystem/","https://aaaaaa-bbbbbb.corp.com/DigitalSystem/"]
# Configure task schedule
  schedule: '@every 60s'

  # Total test connection and data exchange timeout
  #timeout: 16s
1 Like

Hi @Nithani25,

Is it possible that these urls are using self-signed certificates? If that is the case you may want to install them to the system, or add its CA with ssl.certificate_authorities.

You can also disable ssl checks with ssl.verification_mode: none.

6 Likes

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