0

I want to connect to my DO droplet via sequelpro. Therefore I took the following steps:

mysql my.conf

[mysqld]

...

bind-address = DROPLET IP

mysql

GRANT ALL PRIVILEGES ON *.* TO 'root'@'127.0.0.1' INDENTIFIED BY 'password';
FLUSH ALL PRIVILEGES;

SEQUELPRO enter image description here

The error message I get is then:

enter image description here

Can you help me on this please? I seem to miss out on something

Jie Li
  • 1,046
  • 11
  • 17
sesc360
  • 3,155
  • 10
  • 44
  • 86

1 Answers1

0

Edit your my.conf Comment out this line

[mysqld]
...
# bind-address          = 127.0.0.1

mysql:

grand all on  *.*  to root@'%'  identifies  by 'yourPassword';
FLUSH PRIVILEGES;

Sequel Pro:

Hope helpful.

Jie Li
  • 1,046
  • 11
  • 17