Last active
August 13, 2020 09:59
-
-
Save tbvinh/ce85f9f22499f88a532c7b46e0a1dbae to your computer and use it in GitHub Desktop.
Create an user and create a mysql Database
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
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