Update mariadb-104.sh

This commit is contained in:
TommyTran732 2020-06-13 04:55:52 -04:00 committed by GitHub
parent a2f315c94a
commit 8986270948
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -3,10 +3,11 @@ output(){
}
mariadb_root_reset(){
rootpassword=`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`
rootpassword=`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`
Q0="SET old_passwords=0;"
Q1="SET PASSWORD FOR root@localhost = PASSWORD('$rootpassword');"
Q2="FLUSH PRIVILEGES;"
SQL="${Q1}${Q2}"
SQL="${Q0}${Q1}${Q2}"
mysql mysql -e "$SQL"
output "Your MariaDB root password is $rootpassword"
}