From fad013690fa9cc3d048fc4f953f86d8ed8b781fa Mon Sep 17 00:00:00 2001 From: Chris Perry Date: Wed, 10 Jan 2024 10:16:00 -0600 Subject: [PATCH] Fix RDS Demo bootstrap script error --- RDS_Demo/bootstrap.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/RDS_Demo/bootstrap.sh b/RDS_Demo/bootstrap.sh index 0266c59..1618ddb 100644 --- a/RDS_Demo/bootstrap.sh +++ b/RDS_Demo/bootstrap.sh @@ -1,3 +1,6 @@ #!/bin/bash -yum update -y -yum install mysql -y +sudo dnf update -y +wget https://dev.mysql.com/get/mysql80-community-release-el9-3.noarch.rpm -y +sudo dnf install mysql80-community-release-el9-3.noarch.rpm -y +sudo yum update -y +sudo yum install mysql-community-client -y