Report this

What is the reason for this report?

Can't connect to TCP or UDP ports

Posted on September 19, 2014

Hi guys, I just made a droplet where I’m running Apache and SQL servers rightly. But I’m trying to catch some information through the network ports, for this I’m trying sending packets with PacketSender or some cellphone apps… however I can’t connect to the ports. I already used:

iptables -I INPUT -p tcp --dport #### --syn -j ACCEPT

or for UDP:

iptables -I INPUT -p udp --dport #### -j ACCEPT

But still is not working. Using nestat -a I expected to see a complete list of the listening or inactive ports just as in Windows, but it only lists the already-in-use ports… I would appreciate a lot if you can answer me as soon as possible.

Have a nice day



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

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.

Hi criws93! MySQL by default binds to the localhost port only. If you run the following command

netstat -an | grep 3306

You should see something like 127.0.0.1:3306

This can be changed by modifying the config file for MySQL:

sudo nano /etc/my.cnf

You will want to change the IP at the word ‘bind’ to ‘bind=0.0.0.0’

Note: This can cause security problems! Please be aware!

Now you can restart MySQL:

sudo service mysql restart

And then run the following command again:

netstat -an | grep 3306

And you should see something like 0.0.0.0:3306

If you have any further questions, let me know!

-Cooper Thompson

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.