Skip to content

Instantly share code, notes, and snippets.

@jreyes
Last active April 14, 2019 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jreyes/2db40a11a11b58ff180777bc0527a032 to your computer and use it in GitHub Desktop.
Save jreyes/2db40a11a11b58ff180777bc0527a032 to your computer and use it in GitHub Desktop.
Instalar MariaDB en Ubuntu 18.04
sudo apt-get update -y && sudo apt-get install mariadb-server
sudo mysql -u root -p
use mysql;
update user set plugin='' where User='root';
flush privileges;
exit
sudo /etc/init.d/mysql restart
sudo /usr/bin/mysql_secure_installation
sudo mysql -u root -p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment