Fails : sudo filebeat setup --dashboards -e (

Hi all ,

My problem is ...

Exiting: error connecting to Kibana: fail to get the Kibana version: HTTP GET request to https://kibana.nextlink.technology:5601/app/kibana/api/status fails: fail to execute the HTTP GET request: Get https://kibana.nextlink.technology:5601/app/kibana/api/status: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers). Response: .

filebeat.yml

setup.kibana:
host: "https://kibana.nextlink.technology/app/kibana"
username: "xxxxxx"
password: "xxxxxx"

kibana domain

https://kibana.nextlink.technology/app/kibana

Hey @zero.lim, welcome to discuss :slight_smile:

Umm, it seems that it is using default kibana port (5601) instead of the 443 default HTTPS port. Could you try with this configuration?

setup.kibana:
  host: "https://kibana.nextlink.technology:443/app/kibana"
  username: "xxxxxx"
  password: "xxxxxx"

What version of filebeat are you using?

Did filebeat setup work with this url?

Oh sorry, my mistake, you also need to remove the path, so you only specify the host:

setup.kibana:
  host: "https://kibana.nextlink.technology:443"
  username: "xxxxxx"
  password: "xxxxxx"

I solved my problem thanks

1 Like

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