Skip to content

Instantly share code, notes, and snippets.

@jhaemin
Last active April 23, 2020 08:29
Show Gist options
  • Save jhaemin/651e335525f002011bd90d75f0e49c8e to your computer and use it in GitHub Desktop.
Save jhaemin/651e335525f002011bd90d75f0e49c8e to your computer and use it in GitHub Desktop.
Install MySQL 8 on Ubuntu 18.04
# 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