From 1ae212a275ccb2acf81ce71db20b6265076f4cae Mon Sep 17 00:00:00 2001 From: RomanNum3ral Date: Thu, 29 May 2025 20:45:54 +0000 Subject: [PATCH] Update test.sh --- test.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test.sh b/test.sh index 985d0b4..2260930 100644 --- a/test.sh +++ b/test.sh @@ -10,13 +10,10 @@ DB_ROOT_PASSWORD="RootSecure123!@#" apt update && apt upgrade -y apt install -y apache2 mysql-server php libapache2-mod-php php-mysql curl rsync unzip expect -# ====== Secure MySQL Installation ====== -mysql -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '${DB_ROOT_PASSWORD}'; FLUSH PRIVILEGES;" - mysql_secure_installation # ====== Create WordPress Database and User ====== -mysql -u root -p"${DB_ROOT_PASSWORD}" <