# No existing kibana index found

**URL:** https://discuss.elastic.co/t/no-existing-kibana-index-found/25798
**Category:** Kibana
**Created:** [July 17, 2015, 12:15pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798 "2015-07-17T12:15:27Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![Ashok](https://avatars.discourse-cdn.com/v4/letter/a/ed655f/32.png) [@Ashok](https://discuss.elastic.co/u/Ashok)
#### Post date: [July 17, 2015, 12:15pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/1 "2015-07-17T12:15:27Z")

</div>

I am getting _No existing kibana index found_ when i run kibana.

Previously i was able to get the index and visualize the data.

Here is my logstash conf file.  
input {  
file {  
path =\> "D:/LOGS/log1.txt"  
type =\> "core2"  
start\_position =\> "beginning"  
}  
}  
filter {  
csv {   
columns=\>["TYPE","TIMESTAMP","APPNAME"]  
separator =\> ","  
}  
}

output {  
elasticsearch {  
action =\> "index"  
host =\> "localhost"  
index =\> "logstash-%{+YYYY.MM.dd}"  
workers =\> 1  
cluster =\> "myelastic"  
}  
stdout {  
codec =\> rubydebug  
}  
}

---

<div class="post-metadata">

### Author: ![warkolm](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/warkolm/32/39224_2.png) [@warkolm](https://discuss.elastic.co/u/warkolm)
#### Post date: [July 18, 2015, 3:05am UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/2 "2015-07-18T03:05:50Z")

</div>

KB should create this automatically if it doesn't exist.

Does `curl HOST:9200/_cat/indices` show a `.kibana` index?

---

<div class="post-metadata">

### Author: ![Ashok](https://avatars.discourse-cdn.com/v4/letter/a/ed655f/32.png) [@Ashok](https://discuss.elastic.co/u/Ashok)
#### Post date: [July 23, 2015, 10:02am UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/3 "2015-07-23T10:02:24Z")

</div>

Here is my result for _[http://localhost:9200/\_cat/indices?v](http://localhost:9200/_cat/indices?v)_  
health status index pri rep docs.count docs.deleted store.size pri.store.size  
yellow open custom 3 2 0 0 432b 432b  
yellow open logstash-2013.11.06 1 1 2 0 3.1kb 3.1kb

I am not able to index the json data into kibana.  
In above custom have json file.But it is showing docs.count as 0.

What is the modifications in elasticserach.yml and kibana.yml files to index tha data.

---

<div class="post-metadata">

### Author: ![abathula](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/abathula/32/3595_2.png) [@abathula](https://discuss.elastic.co/u/abathula)
#### Post date: [July 23, 2015, 12:00pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/4 "2015-07-23T12:00:54Z")

</div>

Check with your **kibana.yml** file, whether correct configuration is present or not

```
#The Elasticsearch instance to use for all your queries.
elasticsearch_url: "http://localhost:9200"
```

---

<div class="post-metadata">

### Author: ![Ashok](https://avatars.discourse-cdn.com/v4/letter/a/ed655f/32.png) [@Ashok](https://discuss.elastic.co/u/Ashok)
#### Post date: [July 23, 2015, 12:03pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/5 "2015-07-23T12:03:56Z")

</div>

Here is my kibana.yml file

# Kibana is served by a back end server. This controls which port to use.

port: 5600

# The host to bind the server to.

host: "0.0.0.0"

# The Elasticsearch instance to use for all your queries.

elasticsearch\_url: "[http://localhost:9200](http://localhost:9200)"

# preserve\_elasticsearch\_host true will send the hostname specified in `elasticsearch`. If you set it to false,

# then the host you use to connect to _this_ Kibana instance will be sent.

elasticsearch\_preserve\_host: true

# Kibana uses an index in Elasticsearch to store saved searches, visualizations

# and dashboards. It will create a new index if it doesn't already exist.

kibana\_index: ".kibana"

#kibana\_index: "logstash-2015.07.23"

# If your Elasticsearch is protected with basic auth, this is the user credentials

# used by the Kibana server to perform maintence on the kibana\_index at statup. Your Kibana

# users will still need to authenticate with Elasticsearch (which is proxied thorugh

# the Kibana server)

# kibana\_elasticsearch\_username: user

# kibana\_elasticsearch\_password: pass

#index.mapper.dynamic: true

# If your Elasticsearch requires client certificate and key

# kibana\_elasticsearch\_client\_crt: /path/to/your/client.crt

# kibana\_elasticsearch\_client\_key: /path/to/your/client.key

# If you need to provide a CA certificate for your Elasticsarech instance, put

# the path of the pem file here.

# ca: /path/to/your/CA.pem

# The default application to load.

default\_app\_id: "discover"

# Time in milliseconds to wait for elasticsearch to respond to pings, defaults to

# request\_timeout setting

# ping\_timeout: 1500

# Time in milliseconds to wait for responses from the back end or elasticsearch.

# This must be \> 0

request\_timeout: 300000

# Time in milliseconds for Elasticsearch to wait for responses from shards.

# Set to 0 to disable.

shard\_timeout: 0

# Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying

# startup\_timeout: 5000

# Set to false to have a complete disregard for the validity of the SSL

# certificate.

verify\_ssl: true

# SSL for outgoing requests from the Kibana Server (PEM formatted)

# ssl\_key\_file: /path/to/your/server.key

# ssl\_cert\_file: /path/to/your/server.crt

# Set the path to where you would like the process id file to be created.

# pid\_file: /var/run/kibana.pid

# If you would like to send the log output to a file you can set the path below.

# This will also turn off the STDOUT log output.

# log\_file: ./kibana.log

# Plugins that are included in the build, and no longer found in the plugins/ folder

bundled\_plugin\_ids:

- plugins/dashboard/index
- plugins/discover/index
- plugins/doc/index
- plugins/kibana/index
- plugins/markdown\_vis/index
- plugins/metric\_vis/index
- plugins/settings/index
- plugins/table\_vis/index
- plugins/vis\_types/index
- plugins/visualize/index

---

<div class="post-metadata">

### Author: ![Ashok](https://avatars.discourse-cdn.com/v4/letter/a/ed655f/32.png) [@Ashok](https://discuss.elastic.co/u/Ashok)
#### Post date: [July 23, 2015, 12:05pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/6 "2015-07-23T12:05:55Z")

</div>

elasticsearch\_url: "[http://localhost:9200](http://localhost:9200)" is there in kibana.yml

---

<div class="post-metadata">

### Author: ![abathula](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/abathula/32/3595_2.png) [@abathula](https://discuss.elastic.co/u/abathula)
#### Post date: [July 23, 2015, 12:06pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/7 "2015-07-23T12:06:33Z")

</div>

Change the Kibana Port Number from **5600** to **5601**

---

<div class="post-metadata">

### Author: ![Ashok](https://avatars.discourse-cdn.com/v4/letter/a/ed655f/32.png) [@Ashok](https://discuss.elastic.co/u/Ashok)
#### Post date: [July 23, 2015, 12:07pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/8 "2015-07-23T12:07:55Z")

</div>

yea i am using 5609 and elasticsearch\_url: "[http://localhost:9202](http://localhost:9202)"

---

<div class="post-metadata">

### Author: ![abathula](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/abathula/32/3595_2.png) [@abathula](https://discuss.elastic.co/u/abathula)
#### Post date: [July 23, 2015, 12:08pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/9 "2015-07-23T12:08:40Z")

</div>

Then change the Respective Port Number like **5609**

---

<div class="post-metadata">

### Author: ![Ashok](https://avatars.discourse-cdn.com/v4/letter/a/ed655f/32.png) [@Ashok](https://discuss.elastic.co/u/Ashok)
#### Post date: [July 23, 2015, 12:09pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/10 "2015-07-23T12:09:58Z")

</div>

i am having like that only..

---

<div class="post-metadata">

### Author: ![abathula](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/abathula/32/3595_2.png) [@abathula](https://discuss.elastic.co/u/abathula)
#### Post date: [July 23, 2015, 12:14pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/11 "2015-07-23T12:14:48Z")

</div>

Ok, If you run the Browser for Kibana UI like this what happend, Kibana UI loaded...

**localhost:5609**

---

<div class="post-metadata">

### Author: ![Ashok](https://avatars.discourse-cdn.com/v4/letter/a/ed655f/32.png) [@Ashok](https://discuss.elastic.co/u/Ashok)
#### Post date: [July 23, 2015, 12:23pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/12 "2015-07-23T12:23:03Z")

</div>

It's loading. but not able to find the index

---

<div class="post-metadata">

### Author: ![abathula](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/abathula/32/3595_2.png) [@abathula](https://discuss.elastic.co/u/abathula)
#### Post date: [July 23, 2015, 12:28pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/13 "2015-07-23T12:28:17Z")

</div>

Are You using **Elasticsearch** with **mobz\_head** Plugin. If you are using this one you can see the kibana index like this on this **Elasticsearch UI**

Yellow marked(.kibana) is the kibana index.

 ![](https://us1.discourse-cdn.com/elastic/original/2X/c/c54ca9ba532570ca56cccee02fec87f89aab70f6.png)

---

<div class="post-metadata">

### Author: ![Ashok](https://avatars.discourse-cdn.com/v4/letter/a/ed655f/32.png) [@Ashok](https://discuss.elastic.co/u/Ashok)
#### Post date: [July 23, 2015, 12:31pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/14 "2015-07-23T12:31:40Z")

</div>

I am not using any Plugin.To import data am using logstash.  
Previously i was able to visualize the data, but after some days it's not getting eventhough i didn't modify anything

---

<div class="post-metadata">

### Author: ![abathula](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/abathula/32/3595_2.png) [@abathula](https://discuss.elastic.co/u/abathula)
#### Post date: [July 23, 2015, 12:44pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/15 "2015-07-23T12:44:00Z")

</div>

See, You can debug the **logstash.conf** file using command like

> logstash --debug logstash.conf

You will getting any Problems, first yo need check whether the logs are loaded into Elasticsearch server or not(means **output of logstash rubydebug console** )

---

<div class="post-metadata">

### Author: ![Ashok](https://avatars.discourse-cdn.com/v4/letter/a/ed655f/32.png) [@Ashok](https://discuss.elastic.co/u/Ashok)
#### Post date: [July 23, 2015, 1:08pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/16 "2015-07-23T13:08:57Z")

</div>

Getting following error.  
Clamp::UsageError: Unrecognised option '-d'  
signal\_usage\_error at D:/ELK/logstash-1.5.2/vendor/bundle/jruby/1.9/gems/clamp-0.6.5/lib/clamp/command.rb:103  
find\_option at D:/ELK/logstash-1.5.2/vendor/bundle/jruby/1.9/gems/clamp-0.6.5/lib/clamp/option/parsing.rb:62  
parse\_options at D:/ELK/logstash-1.5.2/vendor/bundle/jruby/1.9/gems/clamp-0.6.5/lib/clamp/option/parsing.rb:18  
parse at D:/ELK/logstash-1.5.2/vendor/bundle/jruby/1.9/gems/clamp-0.6.5/lib/clamp/command.rb:52  
run at D:/ELK/logstash-1.5.2/vendor/bundle/jruby/1.9/gems/logstash-core-1.5.2.2-java/lib/logstash/runner.rb:80  
call at org/jruby/RubyProc.java:271  
run at D:/ELK/logstash-1.5.2/vendor/bundle/jruby/1.9/gems/logstash-core-1.5.2.2-java/lib/logstash/runner.rb:96  
call at org/jruby/RubyProc.java:271  
initialize at D:/ELK/logstash-1.5.2/vendor/bundle/jruby/1.9/gems/stud-0.0.20/lib/stud/task.rb:12

---

<div class="post-metadata">

### Author: ![abathula](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/abathula/32/3595_2.png) [@abathula](https://discuss.elastic.co/u/abathula)
#### Post date: [July 23, 2015, 1:12pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/17 "2015-07-23T13:12:03Z")

</div>

use **--d** **(double --symbol)**

---

<div class="post-metadata">

### Author: ![Ashok](https://avatars.discourse-cdn.com/v4/letter/a/ed655f/32.png) [@Ashok](https://discuss.elastic.co/u/Ashok)
#### Post date: [July 23, 2015, 1:20pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/18 "2015-07-23T13:20:47Z")

</div>

Getting No configuration file was specified. Perhaps you forgot to provide the '-f yourlogstash.conf' flag?  
But it running correctly when i run logstash -f logstash.conf  
Here is my logstash.conf file  
input {  
file {  
path =\> "D:/Log/log1.txt"  
type =\> "core2"  
start\_position =\> "beginning"  
}  
}  
filter {  
csv {  
columns =\> ["TYPE","TIMESTAMP", "MESSAGE", "APPNAME"]  
separator =\> ","  
}  
}

output {  
elasticsearch {  
action =\> "index"  
host =\> "localhost"  
index =\> "logstash-%{+YYYY.MM.dd}"  
workers =\> 1  
}  
stdout {  
codec =\> rubydebug  
}  
}

---

<div class="post-metadata">

### Author: ![abathula](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/abathula/32/3595_2.png) [@abathula](https://discuss.elastic.co/u/abathula)
#### Post date: [July 23, 2015, 1:47pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/19 "2015-07-23T13:47:39Z")

</div>

See, Please fallow the correct installation seeing this link

[ELK Stack Installtion](http://hadooptutorials.co.in/tutorials/elasticsearch/install-elasticsearch-kibana-logstash-on-windows.html)

---

<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: [July 6, 2017, 2:15pm UTC](https://discuss.elastic.co/t/no-existing-kibana-index-found/25798/20 "2017-07-06T14:15:54Z")

</div>


