Answers for "mysql allow external access"

SQL
0

allow external access to mysql

CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';

GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' WITH GRANT OPTION;

CREATE USER 'username'@'%' IDENTIFIED BY 'password';

GRANT ALL PRIVILEGES ON *.* TO 'username'@'%' WITH GRANT OPTION;

FLUSH PRIVILEGES;
Posted by: Guest on July-28-2021

Code answers related to "mysql allow external access"

Code answers related to "SQL"

Browse Popular Code Answers by Language