Cannot connect to MySQL installed on GCP Virtual Machine

I've installed MySQL on a Google Cloud Virtual Machine (debian buster). What I want to do is to make this accessible publicly (using username / password obviously).

As far as I can tell the server is visible from the outside world, as I can ping the IP and I get results, and I think I've set up a user correctly and given the appropriate permissions so I can log in.

For info, my firewall settings on GCP look like this (this is just the egress, there is one exactly the same for ingress):

enter image description here

Which I'm assuming is correct and leaves the correct port open?

The issue I have when I use MySQL Workbench is that when I try to create a new connection, it gives me the following error:

Your connection attempt failed for user 'username' to the MySQL server at [my ip address]:3306:

Unable to connect to localhost

Please:

1 Check that MySQL is running on address [my ip address]

2 Check that MySQL is reachable on port 3306 (note: 3306 is the default, but this can be changed)

3 Check the user username has rights to connect to [my ip address] from your address (MySQL rights define what clients can connect to the server and from which machines)

4 Make sure you are both providing a password if needed and using the correct password for [my ip address] connecting from the host address you're connecting from**

Any pointers would be gratefully received.

Update: What is really confusing me is the 'Unable to connect to localhost' error. I'm not trying to connect to localhost...?

Update 2: As per comments, results of the following commands:

enter image description here

enter image description here

Note I am trying to connect using the matprichardson username. The svc2toria user is pointing to my own IP address.


Mat, If you want to use your Google Cloud Instance Database using your MySQL workbench. I suggest you connect to it through an SSH tunnel. So, this problem won't happen. I also ran into this problem several times. Connecting through SSH made the job done.

enter image description here

But if your need is something else, this would not help you at all. If your only purpose is managing your database from your local machine using the MySQL workbench. This will work nicely. Create a USER in your Debian VM. and open port 22 to the public. Also, make sure to have strong credentials or a better key file when connecting through SSH. This method is working for every cloud VM database. I'm using this method for G-Cloud, Azure, and AWS. After all of your work is done. Close port 22 (SSH).