Kibana is not running on global IP

I tried to run kibana on my global ip address.

・error messages

  log   [17:59:06.707] [info][plugins-service] Plugin "case" is disabled.
  log   [18:00:21.994] [fatal][root] { Error: listen EADDRNOTAVAIL: address not available <global IP:5601>
    at Server.setupListenHandle [as _listen2] (net.js:1263:19)
    at listenInCluster (net.js:1328:12)
    at doListen (net.js:1461:7)
    at process._tickCallback (internal/process/next_tick.js:63:19)
  code: 'EADDRNOTAVAIL',
  errno: 'EADDRNOTAVAIL',
  syscall: 'listen',
  address: 'global IP',
  port: 5601 }

 FATAL  Error: listen EADDRNOTAVAIL: address not available <global IP>

・kibana.yml

server.port: 5601
server.host: "global IP"
logging.dest: stdout

・firewall settings

22                         ALLOW       Anywhere
9200                       ALLOW       Anywhere
9300                       ALLOW       Anywhere
5601                       ALLOW       Anywhere
22 (v6)                    ALLOW       Anywhere (v6)
9200 (v6)                  ALLOW       Anywhere (v6)
9300 (v6)                  ALLOW       Anywhere (v6)
5601 (v6)                  ALLOW       Anywhere (v6)

Kibana cant bind my global address.
Can you please kindly help me?

1 Like

Use this

This setting specifies the host of the back end server. To allow remote users to connect, set the value to the IP address or DNS name of the Kibana server. Default: "localhost"

server.host: "0.0.0.0"

1 Like

Thanks.
It works on server.host: "0.0.0.0"

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.