When connecting to kibana hosted on aws ec2 ami instance via chrome browser i run into the below stated error:
This site can’t be reached
ec2-.us-west-1.compute.amazonaws.com refused to connect.
Search Google for ec2 205 west compute amazonaws 5601 status
ERR_CONNECTION_REFUSED
Listed below are some of the troubleshooting steps that I have performed so far.
-
yum list installed reports that kibana is installed.
yum list installed | grep kibana
kibana.x86_64 6.0.0_beta2-1 installed -
kibana is reported as running.
sudo service kibana status
kibana is running -
/var/log/kibana/kibana.stderr file is emplty i.e. no errors are reported when kibana was started using "sudo service kibana start".
-
On the AWS Security Groups port 5601 has been opened to be accessible from my IP.
-
i have not setup any firewalls etc which may prevent access to port 5601.
-
netstat reports that i have a process running on 5601
sudo netstat -tulpn | grep 5601
tcp 0 0 127.0.0.1:5601 0.0.0.0:* LISTEN 7104/node
Any idea what else can i try to troubleshoot and fix this issue - to get Kibana up and running on AWS EC2 AMI instance and have it accessible from my chrome browser?
Thanks!
-Manoj