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}" <