Last active
April 23, 2020 08:29
-
-
Save jhaemin/651e335525f002011bd90d75f0e49c8e to your computer and use it in GitHub Desktop.
Install MySQL 8 on Ubuntu 18.04
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
# check the latest version from | |
# https://dev.mysql.com/downloads/repo/apt/ | |
wget -c https://dev.mysql.com/get/mysql-apt-config_0.8.15-1_all.deb | |
sudo dpkg -i mysql-apt-config_0.8.15-1_all.deb | |
sudo apt update | |
sudo apt install mysql-server | |
sudo mysql_secure_installation | |
# log in to the MySQL as the root | |
sudo mysql | |
# or | |
# sudo mysql -u root -p |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment