Skip to main content
  1. Posts/

Kibana 6.5 upgrade issues

·133 words·1 min· loading · loading ·
DevOps Elk

It’s a known problem and you can find a ticket here. I’ve faced the same issue while upgrading from 6.4.2 to 6.5.4 - so it’s not fixed yet.

So, if you see in your logs something like this:

1... Creating index .kibana_2.
2... Reindexing .kibana to .kibana_1
3... 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_2 and restarting Kibana.

and Kibana server is not ready yet in browser for a long time (more than 2 hours in my case) - it’s waiting for your help. Just drop both these indices:

1curl -XDELETE -H 'Content-Type: application/json' 'http://elasticsearch:9200/.kibana_2'
2curl -XDELETE -H 'Content-Type: application/json' 'http://elasticsearch:9200/.kibana_1'

And don’t forget to restart Kibana.

@soar
Author
@soar
Senior SRE/DevOps engineer