Reputation: 161
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:
But when I view it on browser using "http://localhost:5601" it shows status as "RED" as shown below:
Upvotes: 0
Views: 791
Reputation: 191743
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
Upvotes: 0