2

I have a mysql instance running inside a digitalocean droplet. Originally, we also had a laravel application running inside that droplet with the mysql instance but now we want to move our application to kubernetes.

The application has been deployed to kubernetes and we are trying to connect the laravel application to the MySQL instance inside that droplet for the purpose of testing but we keep getting the error:

Host '46.101.81.14' is not allowed to connect to this MySQL server

That is not IP address I specified as the host, and it is not the IP address of my kubernetes loadbalancer either.

These are the steps I took to enable remote access to the database:

  • set bind address for MySQL to 0.0.0.0
  • CREATE USER ‘someuser’@'localhost’ IDENTIFIED BY 'password’;
  • GRANT ALL ON databasename.* TO remoteuser@'ipaddressofk8s_lb’ IDENTIFIED BY 'password’;
  • sudo ufw allow from ipaddress_of_k8s_lb to any port 3306

Please what could I be missing?

David Essien
  • 1,463
  • 4
  • 22
  • 36

1 Answers1

1

You need to allow access. may this one help you. https://www.digitalocean.com/community/tutorials/how-to-allow-remote-access-to-mysql

Sagor
  • 81
  • 1
  • 9
  • I already followed all the steps in that article. – David Essien May 25 '21 at 15:36
  • "Host '46.101.81.14' is not allowed to connect to this MySQL server" this shows there is an issue with access so please rechack the access process. this might help you. https://stackoverflow.com/questions/1559955/host-xxx-xx-xxx-xxx-is-not-allowed-to-connect-to-this-mysql-server – Sagor May 25 '21 at 16:52