Created
August 2, 2010 13:14
-
-
Save fmarani/504630 to your computer and use it in GitHub Desktop.
notepad
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE USER 'username'@'localhost' IDENTIFIED BY '...'; | |
GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost'; | |
GRANT SELECT, LOCK TABLES on Project_app_production.* to 'user'@'localhost'; | |
SHOW GRANTS FOR 'root'@'localhost'; | |
select * from mysql.user; | |
--- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment