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
hey guys,
I'm ruinning kibana and elasticsearch on the same servers, tried adding:
http.cors.allow-origin: "/.*/"
http.cors.enabled: true
but it still won't work.
any ideas?
EDIT:
I suggest everyone who's facing this problem reads "https://www.digitalocean.com/community/tutorials/how-to-use-logstash-and-kibana-to-centralize-and-visualize-logs-on-ubuntu-14-04"
though it's a little out-dated in terms of elasticsearch version, it made me understand what I did wrong (elasticsearch configuration).