This allowed me to get ES working without logstash: (standalone) sudo bin/elasticsearch
I placed some data into the ES index there are plenty of examples of placing dummy data in. Now to get Kibana to show up: I set this up on a server in the cloud and accessed it from my localhost. cd /opt sudo wget https://download.elasticsearch.org/kibana/kibana/kibana-3.0.0milestone5.zip mkdir -p /opt/elasticsearch-1.0.0/plugins/kibana/_site sudo cp -r kibana-3.0.0milestone5/* elasticsearch-1.0.0/plugins/kibana/_site/ sudo /opt/elasticsearch-1.0.0/plugins/kibana/_site/config.js change the following parameter to the publicly facing dns: from: "http://"+window.location.hostname+":9200" to: elasticsearch: "http://FULL_PUBLIC_DOMAIN_OF_HOST:9200", Then I use Google Chrome Plugin Sense to take a look at my index data using the public domain *[image: Inline image 1] Geovanie Marquez* Scalability Engineer Wellcentive, Inc. 100 Mansell Court East, Suite 625 Roswell, GA 30076 www.wellcentive.com 910.376.4893 Mobile 678.710.2005 Fax [image: Inline image 2] <http://www.facebook.com/Wellcentive> [image: Inline image 3] <http://twitter.com/Wellcentive> [image: Inline image 4]<http://www.linkedin.com/company/wellcentive> On Tue, Feb 18, 2014 at 5:31 AM, Fernando Emwferm <[email protected]> wrote: > Hej: > > I was also testing this and had some issue. When running the embedded > logstash(1.3.3)-elasticsearch-kibana was working perfect but as separate > components I was having issues. When it comes to Kibana I downloaded Kibana > 3 Milestone 4 and after reading a lot I realized that Kibana needs to be > installed together with a Web server (this is how newbie I am). Now for the > config.js the value that I am using is: > > elasticsearch: "http://localhost:9200", > And then I have elasticsearch 0.90.9 which is started also in the 9200 > port by making sure that the config/elasticsearch.yml configuration file > contains the following line: > > http.port: 9200 > Then in my case before installing any web server I found you can run a > small Simple Web Server using python with the following instruction: > > python -m SimpleHTTPServer 8080 > > You have to run this command from the main Kibana directory (where the > config.js and index.html files are). I am using SSH Tunneling so I open > ports 9200 and 8080 for localhost. Then I point my web browser to > > http://localhost:8080/index.html > > And I could see Kibana dashboard but if there is no indexed information in > the elasticsearch data directory it reports and Error: > > *Error* No index found at http://localhost:9200/_all/_mapping. Please > create at least one index.If you're using a proxy ensure it is configured > correctly. > > The error clears when you have inserted data via logstash. > > Hope this helps, > s.r./F > > > On Wednesday, December 18, 2013 12:42:33 AM UTC+1, [email protected]: > >> 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 a topic in the > Google Groups "elasticsearch" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/elasticsearch/nN79-lWeZ9Y/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/elasticsearch/08b63e79-7ad6-42c9-9642-f7fe1e807bf0%40googlegroups.com > . > > For more options, visit https://groups.google.com/groups/opt_out. > -- This email, including any attachments, contains information that is privileged, confidential, and/or otherwise exempt from disclosure under applicable law. If you are not the intended recipient, then any disclosure, dissemination, distribution, copying, or any other use of this communication or its contents is prohibited. If you have received this email in error, please notify the sender immediately and destroy all electronic and hard copies of this email and its attachments. -- 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/CAF5idwtv2L1NOzYHhjNFqi_ALtbp65DRfMfMdMLkxgVoyJHg7g%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
