0
I have an application, on Android with Mysql database, that works perfectly within a specific network. But when trying to access this same base on an external network I get the following message:
28000Acess Denied for user 'root'@'meu ip'(using password: YES)
The Mysql database is on a paid FTP server, it is not within the enterprise network, I do not have a VPN tunnel connected directly to it.
What kind of configuration do I change to connect on this basis?
Try creating a new user to perform the access. Mysql has remote access for the user
root
blocked– Bruno Casarotti