1
votes

I downloaded elasticsearch and open in console. ES worked good and had status green. Next I downloaded Kibana and open - now I have still yellow status, also if I stopped Kibana.

I have info:

[o.e.c.r.a.AllocationService] [4e84hhA] Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[.kibana][0]] ...]).

How can I fix it and where I can find more information for this error?

1
Hello and welcome to StackOverflow. Please take some time to read the help page, especially the sections named "What topics can I ask about here?" and "What types of questions should I avoid asking?". And more importantly, please read the Stack Overflow question checklist. You might also want to learn about Minimal, Complete, and Verifiable Examples.Abdullah Khan

1 Answers

0
votes

That's probably because the .kibana index has one replica shard and you have a single ES node running.

Run this and you'll get a GREEN status again:

PUT /.kibana/_settings
{
    "index" : {
        "number_of_replicas" : 0
    }
}