Skip to content

Instantly share code, notes, and snippets.

@tbvinh
Last active August 13, 2020 09:59
Show Gist options
  • Save tbvinh/ce85f9f22499f88a532c7b46e0a1dbae to your computer and use it in GitHub Desktop.
Save tbvinh/ce85f9f22499f88a532c7b46e0a1dbae to your computer and use it in GitHub Desktop.
Create an user and create a mysql Database
CREATE USER 'vinhtran'@'localhost' IDENTIFIED BY 'password';
CREATE DATABASE <db> set UTF8 collate utf8_bin;
GRANT ALL PRIVILEGES ON db.* TO 'vinhtran'@'localhost';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment