Mysql – Can’t connect to MySQL server error (61)

MySQLremote-access

I use Sequel Pro as a remote MySQL client. Today I tried to connect to my server with these settings:

enter image description here

I get this error message when I click connect:

enter image description here

I don't understand how only a few days ago when I tried to connect it worked with the same settings.

Best Answer

You need to ensure that the DB allows remote connections as well. Check the permissions on the users and databases.

This is an example:

GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.%'
    IDENTIFIED BY PASSWORD 'some_characters'  
    WITH GRANT OPTION;
FLUSH PRIVILEGES;