Setup for Remote Access
-
Grant Privileges
-
GRANT ALL ON <database>.* TO <user>@'%' IDENTIFIED BY '<password>';
-
-
Testing Remote Access
-
mysql -uroot -p -h <host/ip> <database>
-
Grant Privileges
GRANT ALL ON <database>.* TO <user>@'%' IDENTIFIED BY '<password>';
Testing Remote Access
mysql -uroot -p -h <host/ip> <database>
No Comments