Skip to content

Instantly share code, notes, and snippets.

@cnmoro
Created October 27, 2018 15:19
Show Gist options
  • Save cnmoro/30aac3a6445f83bff626590b1fedd9d1 to your computer and use it in GitHub Desktop.
Save cnmoro/30aac3a6445f83bff626590b1fedd9d1 to your computer and use it in GitHub Desktop.
MariaDB Fix
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