Skip to content

Instantly share code, notes, and snippets.

@oterox
Created March 8, 2015 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oterox/03c928bca4a9961a24a5 to your computer and use it in GitHub Desktop.
Save oterox/03c928bca4a9961a24a5 to your computer and use it in GitHub Desktop.
mysql create database and user
CREATE USER 'wpuser'@'localhost' IDENTIFIED BY 'password';
CREATE DATABASE demo;
GRANT ALL PRIVILEGES ON *.* TO 'wpuser'@'localhost';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment