Windows下MySQL忘记了密码怎么修改

如果在Windows下忘记了MySQL的密码,可以这样做:

1.关闭正在运行的MySQL服务:

在CMD中输入net stop mysql或者在Windows+r 调出运行窗口输入services.msc,在服务中手动停止mysql服务

例如方法1:

C:\Users\Administrator>net stop mysql
MySQL 服务正在停止.
MySQL 服务已成功停止。

方法2:


2.转到mysql的bin目录下按住shift+右键,点在此处运行;

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

然后回车,如果没有错误信息,就行了;
注:skip-grant-tables参数用了之后,就可以跳过登录校验;

代码如下

D:wampserver\MySQL\bin>mysqld -nt --skip-grant-tables
140317 13:23:11 [Warning] option 'new': boolean value 't' wasn't recognized. Set
 to OFF.

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

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

D:\wampserver\MySQL\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.退出

mysql>quit;

10.重启mysql服务然后用新密码进入即可



新版本的

shell> mysql -u root --skip-password

1. After connecting, assign a new root password:

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'new_password';





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值