Grants
privileges to MySQL user
CREATE USER 'root'@'localhost' IDENTIFIED BY 'pass';
pass : enter your password
Grant full rights
GRANT ALL ON *.* TO 'root'@'localhost';
more info
http://dev.mysql.com/doc/refman/5.1/en/grant.html
CREATE USER 'root'@'localhost' IDENTIFIED BY 'pass';
pass : enter your password
Grant full rights
GRANT ALL ON *.* TO 'root'@'localhost';
more info
http://dev.mysql.com/doc/refman/5.1/en/grant.html
Comments
Post a Comment