Report this

What is the reason for this report?

I can't connect to remote MySQL!

Posted on November 11, 2018


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.

Hey friend!

Let’s simplify all of this a bit with a theoretical scenario:

  • MySQL is on server 1.1.1.1.
  • I need server at 2.2.2.2 to connect to database “digitalocean” on 1.1.1.1.

On server 1.1.1.1 I make sure that bind-interface is set to 0.0.0.0. I check this with “netstat -tulpn” to make sure MySQL isn’t just listening on 127.0.0.1. If it is, then I haven’t set bind-address, and need to work on that before continuing. Otherwise, I continue by running this in MySQL shell on 1.1.1.1:

create database digitalocean;

Then:

grant all on digitalocean.* to 'jarland'@'2.2.2.2' identified by 'mypassword';

Now on 2.2.2.2 I run:

mysql -h 1.1.1.1 -u jarland -pmypassword digitalocean

Then I should have a MySQL shell. If I don’t, and no firewall is blocking port 3306 outbound on 2.2.2.2 or inbound on 1.1.1.1, I didn’t do one of the above steps.

Jarland

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.