Last active
October 3, 2019 08:49
-
-
Save desawarna/56c02111f55d123a1221b740cee4b144 to your computer and use it in GitHub Desktop.
sql.term
This file contains hidden or 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
sudo mysql -u root | |
CREATE USER 'server'@'localhost' IDENTIFIED BY 'server'; | |
GRANT ALL PRIVILEGES ON *.* TO 'server'@'localhost' WITH GRANT OPTION; | |
EXIT; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment