Created
August 1, 2013 20:34
-
-
Save dmishh/6135027 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 'USER'@'localhost' IDENTIFIED BY 'PWD'; | |
GRANT USAGE ON *.* TO 'USER'@'localhost' IDENTIFIED BY 'PWD' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0; | |
CREATE DATABASE IF NOT EXISTS `DATABASE`; | |
GRANT ALL PRIVILEGES ON `DATABASE`.* TO 'USER'@'localhost'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment