So I followed this guide to gain remote access to a MySQL server for my laptop. However, my IP changes and I want to be able to access the server outside my network. How can I allow any client IP to access it if they have the password?
Here are the main commands that I'm referring to:
mysql> use mysql
mysql> GRANT ALL ON *.* to root@'client.ip.goes.here' IDENTIFIED BY 'your-root-password';
mysql> FLUSH PRIVILEGES;
Any way to do this?