Skip to content

Instantly share code, notes, and snippets.

@rmoff
Last active August 14, 2020 18:39
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rmoff/379e6ce46eb128110f38 to your computer and use it in GitHub Desktop.
Save rmoff/379e6ce46eb128110f38 to your computer and use it in GitHub Desktop.
Kibana 3 and Elasticsearch 1.4 - CORS problem

Kibana 3 against ElasticSearch 1.4 throws an Connection Failed screen. The error text says to set http.cors.allow-origin, but it misses out the important http.cors.enabled: true

Working config:

$ grep cors elasticsearch-1.4.0.Beta1/config/elasticsearch.yml
http.cors.allow-origin: "/.*/"
http.cors.enabled: true
@SamyaMaiti2012
Copy link

looks like I am also doing the same mistake. Can you tell me how you resolved.

@aseev-xx
Copy link

Thanks a lot!

@cta101
Copy link

cta101 commented Jan 3, 2015

After you added the cors settings in elasticsearch config don't reload the kibana page but click back or home button as the webpage says.
If you click refresh you just reload the same "kibana/index.html#/connectionFailed" error page.

@naisanza
Copy link

naisanza commented Jan 5, 2015

I just ran into this problem last night. And it's also good to know one other thing

This didn't work:
http.cors.allow-origin: *

But this did:
http.cors.allow-origin: "*"

Be sure to have "http.cors.enabled: true" included in your .yml file as well.

@100star
Copy link

100star commented Feb 4, 2015

Thanks a lot, it work :)

@hmorgado
Copy link

yeah, it worked for me! thanks =)

@akaluzinski
Copy link

Thank you! It's very useful solution!

@isanjaykp
Copy link

Hmm... Worked for me.

@khoan
Copy link

khoan commented Jul 22, 2015

not working for ES 1.6 on AWS

@russray2008
Copy link

Thank you very much for your suggestion. This helped me fixed my issue.

@nsteblay
Copy link

Yes. For OS X El Capitan 10 using Chrome browser.
Adding the two lines to /usr/local/etc/elasticsearch/elasticsearch.yml
http.cors.allow-origin: "*"
http.cors.enabled: true
resolved the issue.

@sirLoaf
Copy link

sirLoaf commented Mar 25, 2016

thx. worked for me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment