Created
February 24, 2018 22:19
-
-
Save ppazos/e49c6720df134dacd552488ac6a2781e to your computer and use it in GitHub Desktop.
Install MySQL on Linux Mint / Ubuntu
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 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