Elasticsearch indices closed?

curl http://localhost:9200/_cat/indices
 close .kibana   a5uRVhCtRnWFGbTCKh7AyA      
 close report 4b4yfjgsRfKDZ7a5kz2X4g      
 close varun     v392Yg4LRcCx7VBkpNhb9A      
 close myindex   e8f-VNuWSRKfXJag0oshLw      
 close test      noUJiCg3RV2ynXz799Ru1w      
 close cases i5hT950ySe-UObbq6VpFLg 

Any idea how to fix this?

curl http://localhost:9200/.kibana/_search
{
"error": {
"root_cause": [
{
"type": "index_closed_exception",
"reason": "closed",
"index_uuid": "a5uRVhCtRnWFGbTCKh7AyA",
"index": ".kibana"
}
],
"type": "index_closed_exception",
"reason": "closed",
"index_uuid": "a5uRVhCtRnWFGbTCKh7AyA",
"index": ".kibana"
},
"status": 403
}

What is the output of this request?

POST /.kibana/_open
Try searching after executing the above request

1 Like
{
    "acknowledged": true
}

Thanks!

Were you able to search in your .kibana index after that request?
Please mark the answer as the solution if your issue was resolved! :slight_smile:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.