mirror of
https://github.com/tommytran732/MariaDB-Root-Password-Reset
synced 2024-11-23 19:11:34 -05:00
Update mariadb-104.sh
This commit is contained in:
parent
a2f315c94a
commit
8986270948
@ -4,9 +4,10 @@ output(){
|
|||||||
|
|
||||||
mariadb_root_reset(){
|
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');"
|
Q1="SET PASSWORD FOR root@localhost = PASSWORD('$rootpassword');"
|
||||||
Q2="FLUSH PRIVILEGES;"
|
Q2="FLUSH PRIVILEGES;"
|
||||||
SQL="${Q1}${Q2}"
|
SQL="${Q0}${Q1}${Q2}"
|
||||||
mysql mysql -e "$SQL"
|
mysql mysql -e "$SQL"
|
||||||
output "Your MariaDB root password is $rootpassword"
|
output "Your MariaDB root password is $rootpassword"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user