Created
November 16, 2014 17:42
-
-
Save andrewwoods/fe56dd16136f1428835b to your computer and use it in GitHub Desktop.
A script to create a mysql user.
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
-- Removing the keyword PASSWORD will set the password in plain text. | |
CREATE USER 'wp'@'%' IDENTIFIED BY 'password'; | |
-- | |
-- Assign permissions to the user you just created | |
-- | |
GRANT | |
ALTER -- Enable use of ALTER TABLE | |
, ALTER ROUTINE -- Enable stored routines to be altered or dropped | |
, CREATE -- Enable database and table creation | |
-- , CREATE ROUTINE -- Enable stored routine creation | |
-- , CREATE TEMPORARY TABLES -- Enable use of CREATE TEMPORARY TABLE | |
, CREATE USER -- Enable use of CREATE USER, DROP USER, RENAME USER, and REVOKE ALL PRIVILEGES | |
-- , CREATE VIEW -- Enable views to be created or altered | |
, DELETE -- Enable use of DELETE | |
, DROP -- Enable databases, tables, and views to be dropped | |
, EXECUTE -- Enable the user to execute stored routines | |
, FILE -- Enable the user to cause the server to read or write files | |
, GRANT OPTION -- Enable privileges to be granted to or removed from other accounts | |
, INDEX -- Enable indexes to be created or dropped | |
, INSERT -- Enable use of INSERT | |
, LOCK TABLES -- Enable use of LOCK TABLES on tables for which you have the SELECT privilege | |
, PROCESS -- Enable the user to see all processes with SHOW PROCESSLIST | |
, REFERENCES -- Not implemented | |
, RELOAD -- Enable use of FLUSH operations | |
-- , REPLICATION CLIENT -- Enable the user to ask where master or slave servers are | |
-- , REPLICATION SLAVE -- Enable replication slaves to read binary log events from the master | |
, SELECT -- Enable use of SELECT | |
, SHOW DATABASES -- Enable SHOW DATABASES to show all databases | |
, SHOW VIEW -- Enable use of SHOW CREATE VIEW | |
-- , SHUTDOWN -- Enable use of mysqladmin shutdown | |
-- , SUPER -- Enable use of CHANGE MASTER TO, KILL, PURGE BINARY LOGS, and SET GLOBAL statements, the mysqladmin debug command; allows you to connect (once) even if max_connections is reached | |
, UPDATE | |
ON | |
*.* | |
TO | |
'wp'@'%'; -- this should be the same user as above | |
FLUSH PRIVILEGES; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment