From a4db67d922d7c60564b68a2f5a870535ecf7998d Mon Sep 17 00:00:00 2001 From: TommyTran732 <57488583+tommytran732@users.noreply.github.com> Date: Tue, 31 Dec 2019 07:08:53 -0500 Subject: [PATCH] Create mariadb-104.sh --- mariadb-104.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 mariadb-104.sh diff --git a/mariadb-104.sh b/mariadb-104.sh new file mode 100644 index 0000000..3a8de51 --- /dev/null +++ b/mariadb-104.sh @@ -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