There is no listed indices, but kibana lists

I am new on ES.
When I am trying to list indices with curl -XGET localhost:9200/_cat/indices
, there is no indices. It returns just [1]+ Exit 1, but I can list all the indices in kibana. I was also trying to create new index in kibana.

PUT /shirts
{
"mappings": {
"_doc": {
"properties": {
"brand": { "type": "keyword"},
"color": { "type": "keyword"},
"model": { "type": "keyword"}
}
}
}
}

and I cannot create. Here is the response

{
"error": {
"root_cause": [
{
"type": "resource_already_exists_exception",
"reason": "index [shirts/CRmTOREuREyBQS4-ZpikIQ] already exists",
"index_uuid": "CRmTOREuREyBQS4-ZpikIQ",
"index": "shirts"
}
],
"type": "resource_already_exists_exception",
"reason": "index [shirts/CRmTOREuREyBQS4-ZpikIQ] already exists",
"index_uuid": "CRmTOREuREyBQS4-ZpikIQ",
"index": "shirts"
},
"status": 400
}
(ES version 6.5.4, kibana version 6.5.4)
I think there was a problem with those communication. In the data path I can see "CRmTOREuREyBQS4-ZpikIQ" file.
In kibana's Management tab I created new index pattern which was one of the my listed indices, I have been saw all the fields, etc. but the left side of the screen "No default index pattern. You must select or create one to continue" banner is always in there and my index name is never show up.
Is there anyone who has an idea?

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