Home  >  Article  >  Database  >  Mysql的Root密码遗忘的解决办法_MySQL

Mysql的Root密码遗忘的解决办法_MySQL

WBOY
WBOYOriginal
2016-06-01 13:47:34860browse

bitsCN.com

如果忘记了 MySQL 的 root 密码,可以用以下方法重新设置:

1. KILL掉系统里的MySQL进程,方法如下:

   a、点击桌面工具栏打开任务栏管理器。

   

   b、从任务管理器的进程中找到mysqld-nt.exe进程,点击右键选择结束进程。
  

2. 在命令行中输入命令 mysqld-nt --skip-grant-tables 启动MySQL,以不检查权限的方式启动;
 
 

3. 然后另外开一窗口,用空密码方式使用root用户登录 MySQL;

 

4. 修改root用户的密码;

mysql> update mysql.user set password=PASSWORD(新密码) where User=root;
mysql> flush privileges;
mysql> quit

bitsCN.com
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