重新配置mysql服务的方法
首先,需要在命令行中停止mysql服务;
net stop mysql
mysql服务停止后,使用mysql服务器文件启动mysql服务;
mysqld-nt --skip-grant-tables
mysql服务启动后,对mysql服务设置用户名和密码;
mysql -uroot -e "use mysql;update user set password=PASSWORD('new_password') where user='root';flush privileges;"
最后,使用用户名和密码即可登录mysql;
mysql -uroot -pnew_password