忘记数据库密码

1.用root或者运行mysqld 的用户登录系统;

2.利用kill命令结束掉mysqld的进程;

3.使用–skip-grant-tables参数启动MySQL Server

shell>mysqld_safe –skip-grant-tables &

4.为设置新MySQL数据库密码

shell>mysqladmin -u root flush-privileges password "newpassword" 

5.重启MySQL Server

原文地址:https://www.cnblogs.com/wanglan/p/7845973.html