chouben
(Christof H)
August 31, 2023, 9:29am
3
There not much info to go on (for me). Only thing I can confirm is that Kibana is not able to reach elasticsearch.
You should add a larger excerpt from your logs + increase log level to have more detailed info.
I assume you checked these topics with similar issues?
The error you're receiving is because Kibana cannot establish connection to Elasticsearch. Possible root cause is that something is wrong in Kibana configuration or that the Elasticsearch cluster didn't start properly. Could you check the health of ES cluster?
curl -X GET "localhost:9200/_cluster/health?pretty"
Hello @flash1293 ,
This issue is resolved on my master node.
I am not able to start kibana on my data node also. I am getting same error as i have mentioned in earlier comments.
Can you help me in this?
Regards,
Priyanka
I have a Elasticsearch instance in dev mode. My Elasticsearch config is following,
cluster.name: "logparser"
node.master: true
node.data: true
node.ingest: true
node.ml: false
path.data: /storage/elasticsearch
path.logs: /var/log/elasticsearch
network.host: _local_
xpack.security.enabled: true
xpack.security.http.ssl.enabled: true
xpack.security.http.ssl.keystore.path: certs/elasticsearch.p12
xpack.security.http.ssl.truststore.path: certs/elasticsearch.p12
Following is my Kibana configuration, …