Hello guys.
I am not a linux guru - just know how to do simple stuff. But I got a task to setup ELK.
I am running Red Hat Enterprise Linux Server release 6.2
What I did so far:
- Installed Elastisearch, Logstash and Kibana (2.1.0)
- Installed Marvel plugin for Elasticsearch and Kibana
- Changed network.host to 10.10.10.10 (lets assume this is IP address of the host where I installed it) in elasticsearh.yml.
I had to change it from **localhost **as otherwise I could not reach it on the browser from my local machine. I use SSH to connect to the host. - I uncommented and changed this variables in kibana.yml:
server.port: 5601
server.host: "10.10.10.10"
elasticsearch.url: "http://10.10.10.10:9200"
I tried to run it with defualt settings first, but it did not work.
What I have in the end:
- I can reach elastisearch on http://10.10.10.10:9200/
{
"name" : "Fasaud",
"cluster_name" : "elasticsearch",
"version" : {
"number" : "2.1.0",
"build_hash" : "72cd1f1a3eee09505e036106146dc1949dc5dc87",
"build_timestamp" : "2015-11-18T22:40:03Z",
"build_snapshot" : false,
"lucene_version" : "5.3.1"
},
"tagline" : "You Know, for Search"
}
- I cannot reach kibana on http://10.10.10.10:5601/ - timeout.
Both services run on the same 10.10.10.10 host:
Guys, basing on this information, do you have any suggestions why I am able to reach elastisearch from my machine, but in the same time kibana returns me a timeout?
What can I check in this case?
Thanks.