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

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

WBOY
Release: 2016-06-01 13:06:12
Original
984 people have browsed it

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

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

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

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

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
Copy after login

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template