I can't access to my kibana remotely

Hello; I've installed the latest version of EKL stack on my linux server.
I 'can access locally to my kibana but not remotely

curl http://192.168.9.160:5601

var hashRoute = '/app/kibana'; var defaultRoute = '/app/kibana'; var hash = window.location.hash; if (hash.length) { window.location = hashRoute + hash; } else { window.location = defaultRoute; this is locally . Remotely : $ curl -v http://192.168.9.160:5601 * STATE: INIT => CONNECT handle 0x600057980; line 1423 (connection #-5000) * Rebuilt URL to: http://192.168.9.160:5601/ * Added connection 0. The cache now contains 1 members * Trying 192.168.9.160... * TCP_NODELAY set * STATE: CONNECT => WAITCONNECT handle 0x600057980; line 1475 (connection #0) * Connection timed out after 300913 milliseconds * multi_done * stopped the pause stream! * Closing connection 0 * The cache now contains 0 members curl: (28) Connection timed out after 300913 milliseconds I've not installed X-pack my kibana.yml section server.port: 5601 # Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values. # The default is 'localhost', which usually means remote machines will not be able to connect. # To allow connections from remote users, set this parameter to a non-loopback address. server.host: 0.0.0.0 server.host: "192.168.9.160" I have no selinux Could you help me please thank you

Your troubleshooting information is very hard to read

I would do the following

netstat -nltp

double check your instance is listing on the right ip. (Probably but a good double check)

It is probably your iptables/firewalld or some ACL/Firewall in between your remote system and Kibana

thank you for your help. It was my firewall

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