wok view mysql/stuff/reset-password.sh @ rev 21355
updated libzip and libzip-dev (1.4.0 -> 1.5.2)
author | Hans-Günter Theisgen |
---|---|
date | Sun Apr 21 08:42:08 2019 +0100 (2019-04-21) |
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