Posts

Showing posts from January, 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;