2019-12-31 08:17:31 -05:00
|
|
|
output(){
|
|
|
|
echo -e '\e[36m'$1'\e[0m';
|
|
|
|
}
|
|
|
|
|
|
|
|
mariadb_root_reset(){
|
2020-07-25 20:05:55 -04:00
|
|
|
service mysql stop
|
2019-12-31 08:17:31 -05:00
|
|
|
mysqld_safe --skip-grant-tables >res 2>&1 &
|
|
|
|
sleep 5
|
|
|
|
rootpassword=`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`
|
|
|
|
Q1="UPDATE user SET plugin='';"
|
|
|
|
Q2="UPDATE user SET password=PASSWORD('$rootpassword') WHERE user='root';"
|
|
|
|
Q3="FLUSH PRIVILEGES;"
|
|
|
|
SQL="${Q1}${Q2}${Q3}"
|
|
|
|
mysql mysql -e "$SQL"
|
|
|
|
pkill mysqld
|
2020-07-25 20:05:55 -04:00
|
|
|
service mysql restart
|
2019-12-31 08:17:31 -05:00
|
|
|
output "Your MariaDB root password is $rootpassword"
|
|
|
|
}
|
|
|
|
|
|
|
|
mariadb_root_reset
|