mysql 重置密码
2017-01-18 本文已影响0人
末班车2017
丢失root密码:
mysqld_safe --skip-grant-tables&
mysql -u root mysql
更新mysql密码
update mysql.user set authentication_string=password('yuhang') where user='root' and Host ='localhost';
使用以下密码进入mysql root帐号
mysql -u root -p
Enter Password 输入密码进入
yuhang