1
0
mirror of https://github.com/tommytran732/MariaDB-Root-Password-Reset synced 2024-10-18 04:45:14 -04:00

Create mariadb-10.4-legacy

This commit is contained in:
TommyTran732 2020-06-13 05:06:43 -04:00 committed by GitHub
parent 8986270948
commit b439030229
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

14
mariadb-10.4-legacy Normal file
View File

@ -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