Skip to content

Instantly share code, notes, and snippets.

@ppazos
Created February 24, 2018 22:19
Show Gist options
  • Save ppazos/e49c6720df134dacd552488ac6a2781e to your computer and use it in GitHub Desktop.
Save ppazos/e49c6720df134dacd552488ac6a2781e to your computer and use it in GitHub Desktop.
Install MySQL on Linux Mint / Ubuntu
sudo apt-get install mysql-server
set the password for root user ("toor" for dev env)
# check mysql is installed
mysql -u root -p
toor
show databases;
exit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment