I have found 3 ways of launching Kibana 3 1. If you're just setting up a Demo, you can launch an embedded version without d/l and installing any files if you're using Logstash, just append "-- web" to the end of the Logstash statement, eg java -jar logstash -f configfile -- web Then, just open a web browser to localhost:9292 2. Install as a plugin. If you do this, then you do need to use the url with that includes "_plugin" eg http://localhost:9200/_plugin/... 3. Personally, I prefer to just run in a webserver, for this I just d/l the TAR file, extract and copy or move the file to the webserver root. Then, you can open a browser to http://localhost Note that part of why I prefer this last method is that I can also deploy other web tools like es-head and es-hq to the same website, if I extract the TAR files (or simply git clone them) and copy to <within> the webserver's root (including the parent directory of the new additions) then those can also be accessed as subdirectories, eg http://localhost/elasticsearch-head/ http://localhost/elasticsearch-hq/ HTH, Tony
On Tuesday, December 17, 2013 3:42:33 PM UTC-8, [email protected] wrote: > Hello there: > > I have current versions of Elasticsearch, Logstash, and Kibana 3 installed > on CentOS 6.5 . But when I pull up a browser, I get a black header with > text 'dashboard.current.title', and the rest of the page is blank. I also > copied the Kibana site to the plugins directory, and get the same result: > > http://host.domain > > and > > http://host.domain:9200/_plugin/kibana3/ . > > I made changes to config.js: elasticsearch: " > http://host.domain/elasticsearch" , however it is still not working. Any > suggestions re what I am missing? > > Thank you for helping a Newbie. > -- 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/e69de89c-351b-4cf9-b257-8b40bcbe76b8%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
