Open source software supply chain lighting plan, waiting for you>>>
Preface:
Today, when building elasticsearch cluster, we report the problem of kibana server is not ready yet when using kibana to operate elasticsearch again
Through searching for information on the Internet, most of them say that the versions of kibana and elastic search are inconsistent, but I can use them normally before building a cluster
My kibana and elastic search are both installed through homebrew, and both versions should be consistent. Later found a solution, hereby record
Exception details:
"warning","migrations","pid":6181,"message":"Another Kibana instance appears to be migrating the index. Waiting for that migration to complete. If no other Kibana instance is attempting migrations, you can get past this message by deleting index .kibana_index_1 and restarting Kibana.
The main message is this warning, prompting. Kibana_ index_ 1 file, and restart kibana, then follow the steps below
Stop kibana 1
service kibana stop
Delete kibana index 2
curl -XDELETE http://localhost:9200/.kibana*
Start kibana 3
service kibana start
Summary
Be sure to read the log information carefully and don’t ignore the warning. It’s over