# Kibana is not creating Index even the index is present in Elasticsearch

**URL:** https://discuss.elastic.co/t/kibana-is-not-creating-index-even-the-index-is-present-in-elasticsearch/103702
**Category:** Kibana
**Created:** [October 12, 2017, 11:17am UTC](https://discuss.elastic.co/t/kibana-is-not-creating-index-even-the-index-is-present-in-elasticsearch/103702 "2017-10-12T11:17:25Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![vnaresh666666](https://avatars.discourse-cdn.com/v4/letter/v/76d3ee/32.png) [@vnaresh666666](https://discuss.elastic.co/u/vnaresh666666)
#### Post date: [October 12, 2017, 11:17am UTC](https://discuss.elastic.co/t/kibana-is-not-creating-index-even-the-index-is-present-in-elasticsearch/103702/1 "2017-10-12T11:17:25Z")

</div>

I have created an index from logstash on my linux machine which i can see at **:9200/\_cat/indices?v**. but when i want to create the same index in kibana, It is detecting the index but when i click on create nothing is happening.

I don't have x-pack installed with kibana. i am just running kibana without any authentication.

Don't go on the name of index(tomcatlog1-index1). it just named like that

See attachment

 ![kibana screenshot](https://us1.discourse-cdn.com/elastic/original/3X/d/a/da9ccf4c746cfe5dd9613f77f0da5fd05daae19e.JPG)

---

<div class="post-metadata">

### Author: ![timroes](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/timroes/32/19712_2.png) [@timroes](https://discuss.elastic.co/u/timroes)
#### Post date: [October 12, 2017, 11:32am UTC](https://discuss.elastic.co/t/kibana-is-not-creating-index-even-the-index-is-present-in-elasticsearch/103702/2 "2017-10-12T11:32:14Z")

</div>

Hi,

that seems weird. The name also seems right, since apparently Kibana was able to load the field list (otherwise the `@timestamp`) shouldn't be shown.

Could you try refreshing the page and retest it. If it still not works, could you open your browsers developer tools (Windows/Linux, usually: F12 or Ctrl+Shift+i, Mac: CMD+Option+i) and check whether there is any output in the "Console"?

Cheers  
Tim

---

<div class="post-metadata">

### Author: ![vnaresh666666](https://avatars.discourse-cdn.com/v4/letter/v/76d3ee/32.png) [@vnaresh666666](https://discuss.elastic.co/u/vnaresh666666)
#### Post date: [October 12, 2017, 12:25pm UTC](https://discuss.elastic.co/t/kibana-is-not-creating-index-even-the-index-is-present-in-elasticsearch/103702/3 "2017-10-12T12:25:58Z")

</div>

Yes, I did. It is showing forbidden when i click on create button.  
Actually I am having two indices. One created by **root** user and other is by **user**. I have tried staring the kibana service with root and user with both indices vice versa. Still, not able to create the index.

I could able to ping to Elasticsearch host.

one more is i am using Elasticsearch, logstash and kibana of version **6.0.0-rc1**  
PFA

 ![image](https://us1.discourse-cdn.com/elastic/original/3X/a/3/a3975a06a0a065dd258e82088ed597479c2b7483.jpg)

---

<div class="post-metadata">

### Author: ![timroes](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/timroes/32/19712_2.png) [@timroes](https://discuss.elastic.co/u/timroes)
#### Post date: [October 12, 2017, 1:07pm UTC](https://discuss.elastic.co/t/kibana-is-not-creating-index-even-the-index-is-present-in-elasticsearch/103702/4 "2017-10-12T13:07:21Z")

</div>

In general it isn't very recommended to run Elasticsearch with security and Kibana without. It may cause weird behaviors.

In general if you do so, you must make sure that you are now using the correct user, that has permissions to the `.kibana` index (or permissions to create this index if it doesn't exists yet).

---

<div class="post-metadata">

### Author: ![deepybee](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/deepybee/32/20381_2.png) [@deepybee](https://discuss.elastic.co/u/deepybee)
#### Post date: [October 12, 2017, 1:11pm UTC](https://discuss.elastic.co/t/kibana-is-not-creating-index-even-the-index-is-present-in-elasticsearch/103702/5 "2017-10-12T13:11:46Z")

</div>

So you can hit 9200 with a GET from your browser, but not from the Kibana host with a POST.

In the absence of X-Pack Security the 403 is very odd and indicates a possible issue with a third party intermediary somewhere. Are you perhaps connecting over an HTTP proxy?

If you open Dev Tools in Kibana what happens when you enter

`PUT a_test_index`

`DELETE a_test_index`

`POST a_test_index/doc/1 { "foo": "bar" }`

`GET a_test_index/_search`

in that order?

My suspicion is a proxy somewhere preventing POST requests but allowing GET requests. If Console (Dev Tools) can send GET requests successfully but not some or all of PUT, POST, DELETE we know that communication between Kibana and Elasticsearch is possible but that something somewhere is blocking non GET requests.

After trying the above you can re-run `DELETE a_test_index` to restore the initial state.

---

<div class="post-metadata">

### Author: ![deepybee](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/deepybee/32/20381_2.png) [@deepybee](https://discuss.elastic.co/u/deepybee)
#### Post date: [October 12, 2017, 1:20pm UTC](https://discuss.elastic.co/t/kibana-is-not-creating-index-even-the-index-is-present-in-elasticsearch/103702/6 "2017-10-12T13:20:15Z")

</div>

> [@timroes](#):
>
> In general it isn't very recommended to run Elasticsearch with security and Kibana without.

Ah - missed that entirely. Yes that could cause strange behaviour.

---

<div class="post-metadata">

### Author: ![vnaresh666666](https://avatars.discourse-cdn.com/v4/letter/v/76d3ee/32.png) [@vnaresh666666](https://discuss.elastic.co/u/vnaresh666666)
#### Post date: [October 24, 2017, 11:49am UTC](https://discuss.elastic.co/t/kibana-is-not-creating-index-even-the-index-is-present-in-elasticsearch/103702/7 "2017-10-24T11:49:04Z")

</div>

Even I am not using any security for Elasticsearch. I have created a user other than root and with that user i am starting elasticsearch service.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [November 21, 2017, 11:49am UTC](https://discuss.elastic.co/t/kibana-is-not-creating-index-even-the-index-is-present-in-elasticsearch/103702/8 "2017-11-21T11:49:10Z")

</div>

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