Created
November 7, 2020 05:06
-
-
Save tonkatsu7/8dc89b93917a802c8071b50b8291bdce to your computer and use it in GitHub Desktop.
Install MySQL on Ubuntu 20.04 LTS
This file contains 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
# install mysql server | |
sudo apt-get install mysql-server | |
# start mysql server | |
sudo /etc/init.d/mysql start | |
# log into mysql server | |
sudo mysql -u root | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment