From b439030229fae8d2277468ea05ff2d7744476931 Mon Sep 17 00:00:00 2001 From: TommyTran732 <57488583+tommytran732@users.noreply.github.com> Date: Sat, 13 Jun 2020 05:06:43 -0400 Subject: [PATCH] Create mariadb-10.4-legacy --- mariadb-10.4-legacy | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 mariadb-10.4-legacy diff --git a/mariadb-10.4-legacy b/mariadb-10.4-legacy new file mode 100644 index 0000000..8b97ca9 --- /dev/null +++ b/mariadb-10.4-legacy @@ -0,0 +1,14 @@ +output(){ + echo -e '\e[36m'$1'\e[0m'; +} + +mariadb_root_reset(){ + rootpassword=`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1` + Q1="SET PASSWORD FOR root@localhost = PASSWORD('$rootpassword');" + Q2="FLUSH PRIVILEGES;" + SQL="${Q1}${Q2}" + mysql mysql -e "$SQL" + output "Your MariaDB root password is $rootpassword" +} + +mariadb_root_reset