我有运行有索引的弹性搜索服务器,比如服务器 XX.XXX.XXX.XXX:9200。
我在服务器 ES 集群 XX.XXX.XXX.XXX:9200 中有索引,我正在尝试在我的 localhost:5601 (Kibana) 中为其创建仪表板
在我的 kibana.yml 我有这个配置:
server.port: 5601
server.host: "localhost"
# The URL of the Elasticsearch instance to use for all your queries.
elasticsearch.url: "http://XX.XXX.XXX.XXX:9200"
在 Elasticsearch.yml 我有这个配置:
network.host: 0.0.0.0 (to accept all the IPs)
http.port: 9200
但是在运行 kibana.yml 时出现此错误:
连接 ECONNREFUSED http://XX.XXX.XXX.XXX:9200 无法在 http://XX.XXX.XXX.XXX:9200 连接到ElasticSearch
谁能告诉我我在哪里做错了让 kibana 启动并使用 ES 的服务器索引运行?