I have installed elasticsearch in one instance and kibana in another instance. Both the services are running and I can connect elasticsearch using curl and its instance public ip with port 9200 version: 7.9.2 both Assume: Public ips elasticsearch - x.x.x.x kibana - y.y.y.y
Issue: Cant connect kibana instance with its curl and public ip with port 5601 Error: Failed to connect to y.y.y.y port 5601: connection refused
Query: Correct config for elasticsearch.yml and kibana.yml
` kibana.yml: port: 5601 server.host: "y.y.y.y" elasticsearch.hosts: ["http://x.x.x.x:9200"]
elasticsearch.yml: network.host: 0.0.0.0 http.port: 9200 `