Skip to content

Instantly share code, notes, and snippets.

@gmdias727
Last active August 25, 2023 13:05
Show Gist options
  • Save gmdias727/3c63262351eb6fd5ce91629c5dde6d68 to your computer and use it in GitHub Desktop.
Save gmdias727/3c63262351eb6fd5ce91629c5dde6d68 to your computer and use it in GitHub Desktop.
How to install mysql on ubuntu 22+
sudo apt update -y
sudo apt install mysql-server
systemctl is-active mysql
sudo mysql_secure_installation
mysql -u root -p
ALTER USER 'root'@'localhost' IDENTIFIED BY mysql_native_password by/BY 'NewPasswordHere'
mysql -u root -p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment