mysql修改密码
net stop mysql
mysqld --console --skip-grant-tables --shared-memory
mysql -uroot -p
use mysql
update user set authentication_string='' where user='root';
quit
net start mysql
mysql -uroot -p
ALTER USER 'root'@'localhost' IDENTIFIED BY 'root';
mysql服务消失了,处理办法
1.使用cmd管理员身份进入mysql安装目录的bin目录下
2.执行mysqld --install
3.执行net start mysql 启动服务