Created
July 10, 2023 16:58
-
-
Save vnext-nguyen-quyen/e70932316eea68807e21d759c9bfc84a to your computer and use it in GitHub Desktop.
Install MySQL 8.0 client on Amazon Linux 2023
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
#!/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