Home  >  Article  >  Database  >  Windows中MySQL root用户忘记密码解决方案_MySQL

Windows中MySQL root用户忘记密码解决方案_MySQL

WBOY
WBOYOriginal
2016-06-01 13:06:12924browse

同时打开2个命令行窗口,并按如下操作:

.在第一个“命令行窗口”输入:

cd D:/Program Files/MySQL/MySQL Server 5.5/binnet stop mysqlmysqld --skip-grant-tables

.在第二个“命令行窗口”输入:

cd D:/Program Files/MySQL/MySQL Server 5.5/binmysql -uroot -pmysql> update mysql.user set password=PASSWORD("新密码") where User="root";mysql> flush privileges;mysql> exitnet start mysql

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn