重新配置mysql服務的方法
1.首先,需要在命令行中停止mysql服務;
net stop mysql
2.mysql服務停止后,使用mysql服務器文件啟動mysql服務;
mysqld-nt --skip-grant-tables
3.mysql服務啟動后,對mysql服務設置用戶名和密碼;
mysql -uroot -e "use mysql;update user set password=PASSWORD('new_password') where user='root';flush privileges;"
4.最后,使用用戶名和密碼即可登錄mysql;
mysql -uroot -pnew_password