18

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?

Phil B
  • 5,589
  • 7
  • 42
  • 58

2 Answers2

31

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

ipeacocks
  • 2,187
  • 3
  • 32
  • 47
-6

Install ngrok from https://ngrok.com/, then from your command line type:

ngrok http 5601

Ngrok will create a tunnel to the server and provide you with a url from which you can access your kibana UI.

If you need to acceess the ngrok and the 4040 port is closed on the server then do the same

ngrok http 4040
Ben Tahar
  • 69
  • 4