Last active
January 28, 2019 14:07
-
-
Save marcialsoto/ed827d8acdda7011c0984e7c50cddd83 to your computer and use it in GitHub Desktop.
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 | |
| use mysql; | |
| UPDATE mysql.user SET plugin = "mysql_native_password" WHERE User="root"; | |
| UPDATE user SET authentication_string=PASSWORD("root") WHERE User="root"; | |
| flush privileges; exit | |
| ## | |
| sudo service mysql stop | |
| sudo usermod -d /var/lib/mysql/ mysql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment