Skip to content

Instantly share code, notes, and snippets.

@Hendrikv1990
Last active January 25, 2016 13:39
Show Gist options
  • Save Hendrikv1990/e8b54908945405299b6d to your computer and use it in GitHub Desktop.
Save Hendrikv1990/e8b54908945405299b6d to your computer and use it in GitHub Desktop.
CREATE DATABASE woocommerce;
CREATE USER admin@localhost;
SET PASSWORD FOR admin@localhost= PASSWORD("admin");
GRANT ALL PRIVILEGES ON woocommerce.* TO admin@localhost IDENTIFIED BY 'admin';
FLUSH PRIVILEGES;
http://stackoverflow.com/questions/11951570/mysql-create-user-with-a-variable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment