Hi buddy, I hit the 'Connection Failed' in kibana to connect to my elasticsearch server, I am pretty sure the elasticsearch server is reachable on my kibana, so how can I debug this issue?
I am using kibana 3 and elasticsearch 1.3.2. [root@kibana ~]# curl -i -XGET http://192.168.1.211:9200 HTTP/1.1 200 OK Content-Type: application/json; charset=UTF-8 Content-Length: 304 { "status" : 200, "name" : "elasticsearch-1", "version" : { "number" : "1.3.2", "build_hash" : "dee175dbe2f254f3f26992f5d7591939aaefd12f", "build_timestamp" : "2014-08-13T14:29:30Z", "build_snapshot" : false, "lucene_version" : "4.9" }, "tagline" : "You Know, for Search" } [root@kibana ~]# cat /opt/kibana/current/config.js /** * These is the app's configuration, If you need to configure * the default dashboard, please see dashboards/default */ define(['settings'], function (Settings) { "use strict"; return new Settings({ elasticsearch: "http://192.168.1.211:9200/alchemy-openstack", kibana_index: "kibana-int", default_route: "/dashboard/file/logstash.json", panel_names: ["histogram", "map", "pie", "table", "filtering", "timepicker", "text", "fields", "hits", "dashcontrol", "column", "derivequeries", "trends", "bettermap", "query", "terms"] }); }); -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/bbd52dbf-0c63-4ae3-ae7f-10fe987119bf%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
