Change keyboard language from the console external MYSQL Connection Allow
OK to allow MySQL connections from an external machine we just have to make
following:
loguearnos in
msyql # mysql-u root-p
mysql> GRANT ALL PRIVILEGES ON *.* TO 'test' @ 'xxxx' IDENTIFIED BY 'password';
:
mysql> FLUSH PRIVILEGES;
if we want to allow the connection of the user, root, test, we have from any computer, just to change the IP address in the sign "%" and it being so
:
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY' PASSWORD ';
hope they serve;)
0 comments:
Post a Comment