Filebeat setup. fail to create the Kibana loader

Будьте добры, подскажите пожалуйста, не знаю куда уже смотреть.
При установке filebeat делаю:
filebeat setup -e -E output.logstash.enabled=false -E output.elasticsearch.hosts=['remote_ip:9200'] -E setup.kibana.host=remote_ip:5601

Получаю:

Exiting: fail to create the Kibana loader: Error creating Kibana client: 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://remote_ip:5601/api/status: dial tcp remote_ip:5601: connect: connection refused. Response: .

Сетап filebeat:
setup.kibana:
host: "remote_ip:5601"

output.elasticsearch:
hosts: ["remote_ip:9200"]
username: "username"
password: "password!"

Если в кибане SSL настроен, попробуйте добавить

setup.kibana.protocol: "https"

В противном случае, попробуйте запустить на машине с filebeat такую команду и пришлите сюда результат:

curl -u 'username:password!' -v http://remote_ip:5601/api/status

ssl не настроен

About to connect() to remote_ip port 5601 (#0)

  • Trying remote_ip...
  • Connection refused
  • Failed connect to remote_ip:5601; Connection refused
  • Closing connection 0
    curl: (7) Failed connect to remote_ip:5601; Connection refused

порт кибаны 5601 открыт

Значит не так открыт. Если был бы открыт, эта команда сработала бы. Если filebeat не может соединиться с кибаной - то создать дашборды он не сможет.

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