0
votes

I have started to learn ElasticSearch. I install ElasticSearch 5.6.8 and Kibana version 5.x
When I view the status of the cluster using curl command "curl -XGET "http://localhost:9200/_cat/health?v"" it shows "Green" as shown below:

terminal output using curl

But when I view it on browser using "http://localhost:5601" it shows status as "RED" as shown below:

Kibana Browser

1

1 Answers

0
votes

The error indicates you're running a newer version of Kibana and an older, incompatible version of Elasticsearch

plugin:[email protected]

Solution is either grab the latest release of Elasticsearch, or downgrade Kibana

Personally, I use Docker Compose to test ELK stack locally