Answers for "enable mysql remote connection to two specific ip address"

SQL
0

enable mysql remote connection to two specific ip address

GRANT ALL ON database_name.* TO user_name@'ip_address' IDENTIFIED BY 'user_password';
Copy
Posted by: Guest on February-21-2022
0

enable mysql remote connection to two specific ip address

GRANT ALL ON dbname.* TO foo@'10.8.0.5' IDENTIFIED BY 'my_passwd';
Copy
Posted by: Guest on February-21-2022

Code answers related to "enable mysql remote connection to two specific ip address"

Code answers related to "SQL"

Browse Popular Code Answers by Language