# Problem with ElasticSearch Logstash and kibana

**URL:** https://discuss.elastic.co/t/problem-with-elasticsearch-logstash-and-kibana/16765
**Category:** Elasticsearch
**Created:** [April 2, 2014, 10:08am UTC](https://discuss.elastic.co/t/problem-with-elasticsearch-logstash-and-kibana/16765 "2014-04-02T10:08:42Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![strt](https://avatars.discourse-cdn.com/v4/letter/s/ec9cab/32.png) [@strt](https://discuss.elastic.co/u/strt)
#### Post date: [April 2, 2014, 10:08am UTC](https://discuss.elastic.co/t/problem-with-elasticsearch-logstash-and-kibana/16765/1 "2014-04-02T10:08:42Z")

</div>

I have installed

Logstash ElasticSearch Kibana

on an EC2 instance.

I can visit [http://example.com:9200](http://example.com:9200) Here I get

{  
"status" : 200,  
"name" : "Aleta Ogord",  
"version" : {  
"number" : "1.1.0",  
"build\_hash" : "2181e113dea80b4a9e31e58e9686658a2d46e363",  
"build\_timestamp" : "2014-03-25T15:59:51Z",  
"build\_snapshot" : false,  
"lucene\_version" : "4.7"  
},  
"tagline" : "You Know, for Search"  
}  
So elastic search is working, but when I go to

[http://example.com/kibana](http://example.com/kibana)

I get "No results There were no results because no indices were found that match your selected time span"

I have a config file in

/etc/logstash/conf.d/ that contains the following:-

input {  
file {  
path =\> "/var/log/apache/access.log"  
type =\> "apache-access"  
}  
}

filter {  
grok {  
type =\> "apache-access"  
pattern =\> "%{COMBINEDAPACHELOG}"  
}  
}

output {  
stdout { }

elasticsearch {  
host =\> "127.0.0.1"  
}  
}  
I have checked the logstash log file, and there are no relevent error messages

Please help

---

<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, 1:38am UTC](https://discuss.elastic.co/t/problem-with-elasticsearch-logstash-and-kibana/16765/2 "2017-07-06T01:38:47Z")

</div>


