丢失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
网友评论