How do I add a user to MySQL?
Apr 14
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;
RSS