Skip to content

Instantly share code, notes, and snippets.

@vnext-nguyen-quyen
Created July 10, 2023 16:58
Show Gist options
  • Save vnext-nguyen-quyen/e70932316eea68807e21d759c9bfc84a to your computer and use it in GitHub Desktop.
Save vnext-nguyen-quyen/e70932316eea68807e21d759c9bfc84a to your computer and use it in GitHub Desktop.
Install MySQL 8.0 client on Amazon Linux 2023
#!/bin/sh
# Docs: https://dev.mysql.com/doc/mysql-repo-excerpt/8.0/en/linux-installation-yum-repo.html
# Install repo
wget https://dev.mysql.com/get/mysql80-community-release-el9-1.noarch.rpm
sudo dnf install mysql80-community-release-el9-1.noarch.rpm
# Verify enabled mysql80-community repo
sudo dnf repolist enabled
# Install mysql-community-client
sudo dnf install mysql-community-client
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment