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

MySQL密码重置(root用户)

时间:2014-08-17 18:17:12      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   div   linux   amp   line   

分别在Windows下和Linux下重置了MYSQL的root的密码:

在windows下:

1:进入cmd,停止mysql服务:Net stop mysql

到mysql的安装路径启动mysql,在bin目录下使用mysqld-nt.exe启动,

2:执行:mysqld-nt --skip-grant-tables(窗口会一直停止)

3:然后另外打开一个命入令行窗口,执行mysql(或者直接进入Mysql Command Line Cilent),此时无需输入密码即可进入。

use mysql

update user set password=password("新密码") where user="root";

flush privileges;

exit


4:使用任务管理器,找到mysqld-nt的进程,结束进程!

在重新启动mysql-nt服务,就可以用新密码登录了。

在linux下:

如果 MySQL 正在运行,首先杀之:

 killall -TERM mysqld。


启动 MySQL :

bin/mysqld_safe --skip-grant-tables &


就可以不需要密码就进入 MySQL 了。
然后就是

use mysql

update user set password=password("new_pass") where user="root";

flush privileges


重新杀 MySQL ,用正常方法启动 MySQL 。

 

MySQL密码重置(root用户),布布扣,bubuko.com

MySQL密码重置(root用户)

标签:style   blog   color   使用   div   linux   amp   line   

原文地址:http://www.cnblogs.com/yjken/p/3917934.html

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