Beats: how to fix this sh*t?

Created on 1 Feb 2018  路  5Comments  路  Source: elastic/beats

Ubuntu 17.10

infilebeat.yml i am already binded IP

setup.kibana:
host: "172.27.1.54:5601"

root@fssp:/etc/filebeat# filebeat setup --dashboards

Exiting: Error importing Kibana dashboards: fail to create the Kibana loader: Error creating Kibana client: fail to get the Kibana version:HTTP GET request to /api/status fails: fail to execute the HTTP GET request: Get http://localhost:5601/api/status: dial tcp [::1]:5601: getsockopt: connection refused. Response: .

Filebeat question

Most helpful comment

Use the correct indentation for the YAML configuration. See the example in the documentation.

setup.kibana:
  host: "172.27.1.54:5601"

You can also write it like this:

setup.kibana.host: "172.27.1.54:5601"

Please use https://discuss.elastic.co/c/beats for questions.

All 5 comments

Use the correct indentation for the YAML configuration. See the example in the documentation.

setup.kibana:
  host: "172.27.1.54:5601"

You can also write it like this:

setup.kibana.host: "172.27.1.54:5601"

Please use https://discuss.elastic.co/c/beats for questions.

Thank you dude, it's now working

Here not works :(

Does not work even with the correct indentation.

just a note in the event someone runs across this (like I did). I had the setup.kibana.host as 127.0.0.1:5601 which always gave a connection failed. Changing it to the FQDN:5601 worked.

Was this page helpful?
0 / 5 - 0 ratings