From fb969d05bc6735a918f4fa9a72f41b4a3725d4de Mon Sep 17 00:00:00 2001 From: Alex <116374290+aaalexlit@users.noreply.github.com> Date: Wed, 21 Jun 2023 16:07:39 +0200 Subject: [PATCH] Change the way to install mysql client for amazon linux 2023 For amazon linux 2023 yum install mysql doesn't work any more --- RDS_Demo/bootstrap.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/RDS_Demo/bootstrap.sh b/RDS_Demo/bootstrap.sh index 0266c59..af30442 100644 --- a/RDS_Demo/bootstrap.sh +++ b/RDS_Demo/bootstrap.sh @@ -1,3 +1,4 @@ #!/bin/bash -yum update -y -yum install mysql -y +sudo dnf update -y +sudo dnf install mariadb105-server +