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;
The error message I get is then:
Can you help me on this please? I seem to miss out on something