Question
Connection refused When I using browser with other port
I can access my host with browser using 80 port, but I get Connection refused when I access my host with other port (like 8080, 81, 82.....). How can I expose more port to access my services?
the output of netstat -lnp as below:
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 28886/php-fpm.conf)
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1666/sshd
tcp6 0 0 :::3306 :::* LISTEN 15739/docker-proxy
tcp6 0 0 :::2222 :::* LISTEN 14782/docker-proxy
tcp6 0 0 :::8080 :::* LISTEN 15942/docker-proxy
tcp6 0 0 :::80 :::* LISTEN 15161/docker-proxy
tcp6 0 0 :::22 :::* LISTEN 1666/sshd
tcp6 0 0 :::443 :::* LISTEN 15150/docker-proxy
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×