I have an Apache server listening on port 10801 (running on Amazon linux EC2 instance). I have updated the inbound rule for the security group with custom TCP rule to allow all traffic to port 10801. The process is listening on port 10801
>> sudo netstat -tulpn | grep :10801
tcp 0 0 :::10801 :::* LISTEN 24534/httpd
When i hit the port number from my browser, it simply spins and fails. I see multiple questions like this and almost every one asks to update the security group which i have done already. Still unable to reach the service through port 10801. Everything works if i run the server on port 80. Seems like im missing something here, any help is appreciated.