wok view mysql/stuff/reset-password.sh @ rev 23193
Up php (7.3.16) CVE-2020-7064/7065/7066
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Mar 20 15:21:15 2020 +0100 (2020-03-20) |
parents | |
children |
line source
1 #!/bin/sh
3 [ -z "$1" ] && echo "Usage: $0 <newpassword>" && exit 1
5 /etc/init.d/mysql stop
6 /usr/bin/mysqld_safe --skip-grant-tables &
7 mysql <<EOT
8 UPDATE `mysql`.`user` SET `Password` = password('$1') WHERE `User` = "root" AND Host = "localhost";
9 quit
10 EOT
11 mysqladmin shutdown
12 /etc/init.d/mysql start