Skip to content

Instantly share code, notes, and snippets.

@svperfecta
Last active December 30, 2015 17:48
Show Gist options
  • Save svperfecta/7862975 to your computer and use it in GitHub Desktop.
Save svperfecta/7862975 to your computer and use it in GitHub Desktop.
MySQL Admin
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON database.* TO 'newuser'@'localhost';
FLUSH PRIVILEGES;
DROP USER ‘demo’@‘localhost’;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment