Created
October 27, 2018 15:19
-
-
Save cnmoro/30aac3a6445f83bff626590b1fedd9d1 to your computer and use it in GitHub Desktop.
MariaDB Fix
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 su | |
mysql -u root | |
use mysql; | |
update user set plugin=' ' where User='root'; | |
flush privileges; | |
exit; | |
mysql_secure_installation | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment