Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to bind Kibana to multiple host names / IPs

Tags:

kibana

Is there a way to bind Kibana to more than one IP address using kibana's config file: kibana.yml? Right now, if I modify the line
server.host: "127.0.0.1"
to
server.host: ["127.0.0.1","123.45.67.89"]
which is valid YML, I get an error.
Is there any way to accomplish this from within Kibana or do I need to do it through a proxy/nginx?

like image 263
Phil B Avatar asked Jan 07 '16 17:01

Phil B


1 Answers

Try 0.0.0.0 if you want kibana to be available on real ip and localhost at the same time.

like image 113
ipeacocks Avatar answered Sep 28 '22 23:09

ipeacocks