Report this

What is the reason for this report?

ERROR 2003 (HY000): Can't connect to MySQL server on 'XXX.XX.XX.XX' (110)

Posted on October 28, 2017

I had setup another instance only for MySQL server.

This is overall what I did to setup my remote access for MySQL:

Configure

vi /etc/my.cnf
[mysqld]
bind-address=SQL-SERVER-IP
# skip-networking
 /etc/init.d/mysql restart

Allow firewall ports

sudo ufw allow 3306/tcp
sudo ufw allow 3306
sudo ufw allow 8080/tcp
sudo ufw allow 8080
sudo service ufw restart

Grant access to remote IP address

mysql -u root -p mysql
GRANT ALL ON foo.* TO root@'SECOND-INSTANCE-SERVER-IP' IDENTIFIED BY 'PASSWORD';
Query OK, 0 rows affected, 1 warning (0.00 sec)
exit

Test it

mysql -u root -h 'SECOND-INSTANCE-SERVER-IP' -p

Error produced:

ERROR 2003 (HY000): Can’t connect to MySQL server on ‘SECOND-INSTANCE-SERVER-IP’ (110)



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.

same problem here

Even im facing the same issue.

i granted permissions for all

ERROR 2003 (HY000): Can’t connect to MySQL server on ‘XXX.XXX.XXX.XXX’ (113)

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.