0

我有一个面向公众的弹性搜索服务器,并使用 htaccess 安全地访问它。问题是 Kibana 现在无法连接到 elasticsearch。

在 Kibana 的 config.js 中尝试了以下操作,但失败了——

elasticsearch: "https://username:password@elasticsearch.example.com",

我得到 Kibana 界面中的红色条说-

“请确保您的系统可以访问弹性搜索。”

4

1 回答 1

0

Make sure the service elasticsearch is running

service elasticsearch status

You can restart the service by

service elasticsearch restart

You can view the log file of elasticsearch basically at following location

/var/log/elasticsearch/elasticsearch.log

By default elasticsearch listen on port 9200. Check if you have mentioned the port.

于 2014-07-27T10:48:36.807 回答