1
0
mirror of https://github.com/tommytran732/MariaDB-Root-Password-Reset synced 2024-09-16 14:14:43 -04:00
MariaDB-Root-Password-Reset/mariadb-104.sh

17 lines
417 B
Bash
Raw Normal View History

#!/bin/bash
2019-12-31 07:08:53 -05:00
output(){
echo -e '\e[36m'"$1"'\e[0m';
2019-12-31 07:08:53 -05:00
}
mariadb_root_reset(){
rootpassword=$(/dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
2020-06-13 04:55:52 -04:00
Q0="SET old_passwords=0;"
2019-12-31 07:08:53 -05:00
Q1="SET PASSWORD FOR root@localhost = PASSWORD('$rootpassword');"
Q2="FLUSH PRIVILEGES;"
2020-06-13 04:55:52 -04:00
SQL="${Q0}${Q1}${Q2}"
2019-12-31 07:08:53 -05:00
mysql mysql -e "$SQL"
output "Your MariaDB root password is $rootpassword"
}
mariadb_root_reset