本地测试通过 curl ip:5601提示Connection refused

如下,为什么出现这样的结果,只能本地localhost访问,ip地址如何绑定

root@elk:~# curl 10.110.0.103:5601/app/kibana#/dashboards
curl: (7) Failed to connect to 10.110.0.103 port 5601: Connection refused
root@elk:~# curl 127.0.0.1:5601/app/kibana#/dashboards
root@elk:~# curl 127.0.0.1:5601
root@elk:~# curl 10.110.0.103:5601
curl: (7) Failed to connect to 10.110.0.103 port 5601: Connection refused

配置kibana.yml
server.host : 'localhost'更改为server.host : '0.0.0.0'

1 Like

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