码迷,mamicode.com
首页 > 数据库 > 详细

mysql重置root密码

时间:2014-05-26 13:10:21      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:tar   a   strong   文件   使用   数据   

1、在配置文件my.ini最后增加:skip-grant-tables

2、重启mysql服务:

net stop mysql

net start mysql

3、无密码进入数据库,重置密码为root:

mysql -u root -p

use mysql

update user set password=PASSWORD("root") where user=‘root‘;

4、还原配置文件my.ini,删除skip-grant-tables,重启mysql服务,既可使用新密码登录。

mysql重置root密码,布布扣,bubuko.com

mysql重置root密码

标签:tar   a   strong   文件   使用   数据   

原文地址:http://www.cnblogs.com/yuejin/p/3746684.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!