How do I add a user to MySQL?
mysql -u root -p
(here I enter 'my_root_password' to get through the mysql prompt)
create database my_database;
GRANT ALL PRIVILEGES
ON my_database.*
TO 'my_user'@'localhost'
IDENTIFIED BY 'my_password'
WITH GRANT OPTION;
No comments :
Post a Comment