Installation of mysql client to the Amazom Linux

The installation of the mysql to the Amazon Linux is quite easy. Use the following commands to install mysql client to AWS EC2 AWS with Amazon Linux:

sudo dnf update
cd /tmp
wget https://dev.mysql.com/get/mysql80-community-release-el9-3.noarch.rpm
sudo dnf install mysql80-community-release-el9-3.noarch.rpm
sudo dnf update
sudo dnf install mysql-community-client
mysql -h <remote host name> -u dbadmin -p

Komentáře