Monday, January 23, 2012

Enable remote connection to mysql

$ mysql -u root -p Enter password: mysql> use mysql_database_name; mysql> GRANT ALL ON *.* to root IDENTIFIED BY 'your-root-password';  mysql> FLUSH PRIVILEGES;

No comments:

Post a Comment