Last active
November 16, 2020 12:26
-
-
Save mul14/40f3a2b3326381cfe800991a229c3f08 to your computer and use it in GitHub Desktop.
MySQL/MariaDB mysql_native_password
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 'mul14'@'localhost' IDENTIFIED BY 'secret_password'; | |
GRANT ALL PRIVILEGES ON *.* TO 'mul14'@'localhost' WITH GRANT OPTION; | |
FLUSH PRIVILEGES; |
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
ALTER USER 'root'@'localhost' IDENTIFIED BY 'root'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment