windows mysql忘记密码怎么办

windows mysql忘记密码怎么办,第1张

工具:windows mysql

步骤:

关闭正在运行的MySQL服务:net stop mysql或 在windows 任务管理器中结束 mysqld.exe 进程或在 管理工具里面的服务找到 mysql服务 ,将其停止;

复制代码代码如下:

C:\Users\Administrator>net stop mysql

MySQL 服务正在停止.

MySQL 服务已成功停止。

2.打开命令行,转到mysql的bin目录下;

复制代码代码如下:

C:\Users\Administrator>cd C:\Program Files\MySQL\MySQL Server 5.5\bin

C:\Program Files\MySQL\MySQL Server 5.5\bin>

3.输入:mysqld -nt --skip-grant-tables 

然后回车,如果没有错误信息,就行了;

注:skip-grant-tables参数用了之后,就可以跳过登录校验 

复制代码代码如下:

C:\Program Files\MySQL\MySQL Server 5.5\bin>mysqld -nt --skip-grant-tables

140317 13:23:11 [Warning] option 'new': boolean value 't' wasn't recognized. Set

 to OFF.

4.再打开一个命令行(因为刚才那个DOS窗口已经不能动了),同样转到mysql的bin目录下; 

5.直接输入 mysql 并回车,如果成功,将出现MySQL提示符 >

复制代码代码如下:

C:\Users\Administrator>cd C:\Program Files\MySQL\MySQL Server 5.5\bin

C:\Program Files\MySQL\MySQL Server 5.5\bin>mysql

Welcome to the MySQL monitor.  Commands end with or \g.

Your MySQL connection id is 1

Server version: 5.5.35 MySQL Community Server (GPL)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

6.切换到mysql表

复制代码代码如下:

mysql>USE mysql

7.可以修改密码了:

复制代码代码如下:

UPDATE user SET password=PASSWORD("123456") WHERE user="root"

8.刷新权限,不要忘记了:

复制代码代码如下:

mysql>FLUSH PRIVILEGES

9.退出:(退出的方法很多 有quit、exit、ctrl+c、\q 等等) 

10.注销或重启计算机,然后打开MySQL服务,使用用户名root和设置的新密码就可以登录了。

MySQL密码的恢复方法之一

1.首先确认服务器出于安全的状态,也就是没有人能够任意地连接MySQL数据库。 因为在重新设置MySQL的root密码的期间,MySQL数据库完全出于没有密码保护的 状态下,其他的用户也可以任意地登录和修改MySQL的信息。可以采用将MySQL对外的端口封闭,并且停止Apache以及所有的用户进程的方法实现服务器的准安全状态。最安全的状态是到服务器的Console上面 *** 作,并且拔掉网线。

2.修改MySQL的登录设置:

# vi /etc/my.cnf

在[mysqld]的段中加上一句:skip-grant-tables 保存并且退出vi。

3.重新启动mysqld

# /etc/init.d/mysqld restart ( service mysqld restart )

4.登录并修改MySQL的root密码

mysql>USE mysql

mysql>UPDATE user SET Password = password ( 'new-password' ) WHERE User = 'root'

mysql>flush privileges

mysql>quit

5.将MySQL的登录设置修改回来

# vi /etc/my.cnf

将刚才在[mysqld]的段中加上的skip-grant-tables删除

保存并且退出vi。

6.重新启动mysqld

# /etc/init.d/mysqld restart ( service mysqld restart )

7.恢复服务器的正常工作状态

将步骤一中的 *** 作逆向 *** 作。恢复服务器的工作状态。

MySQL密码的恢复方法之二

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

1. KILL掉系统里的MySQL进程;

killall -TERM mysqld

2. 用以下命令启动MySQL,以不检查权限的方式启动;

safe_mysqld --skip-grant-tables &

3. 然后用空密码方式使用root用户登录 MySQL;

mysql -u root

4. 修改root用户的密码;

mysql>update mysql.user set password=PASSWORD('新密码') where User='root'

mysql>flush privileges

mysql>quit

重新启动MySQL,就可以使用新密码登录了

MySQL密码的恢复方法三

有可能你的系统没有 safe_mysqld 程序(比如我现在用的 ubuntu *** 作系统, apt-get安装的mysql) , 下面方法可以恢复

1. 停止mysqld;

/etc/init.d/mysql stop

(您可能有其它的方法,总之停止mysqld的运行就可以了)

2. 用以下命令启动MySQL,以不检查权限的方式启动;

mysqld --skip-grant-tables &

3. 然后用空密码方式使用root用户登录 MySQL;

mysql -u root

4. 修改root用户的密码;

mysql>update mysql.user set password=PASSWORD('newpassword') where User='root'

mysql>flush privileges

mysql>quit

重新启动MySQL

/etc/init.d/mysql restart

就可以使用新密码 newpassword 登录了。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10653399.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-10
下一篇 2023-05-10

发表评论

登录后才能评论

评论列表(0条)

保存