Heim  >  Artikel  >  Datenbank  >  Mysql的Root密码遗忘的解决办法_MySQL

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

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

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
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn