Created
October 20, 2017 08:11
-
-
Save tidalgo22/d40b77f7b15c118583495e0e490067d5 to your computer and use it in GitHub Desktop.
firewall - Port seems to be open, but connection refused
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The port is running already it can be check through netstat -a. | |
But openning in browser refuses the connection. | |
This is due to firewall blocking the port, It needs to be allowed. | |
Check all port allowed by firewall: | |
sudo ufw status | |
Allow a port | |
sudo ufw allow 8890 | |
https://askubuntu.com/questions/166068/port-seems-to-be-open-but-connection-refused |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment