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

Mysql找回root密码

时间:2016-06-07 16:42:22      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:linux 数据库

1.关闭数据库

# killall mysqld

2.使用--skip-grant-tables启动mysql,忽略授权登录验证。

# mysqld_safe --skip-grant-tables --user=mysql &

3.登入数据库

# mysql

4.修改密码

mysql> update mysql.user set password=password("123456") where user=‘root‘ and host=‘localhost‘;
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

5.重启数据库 


Mysql找回root密码

标签:linux 数据库

原文地址:http://jcat2008.blog.51cto.com/320366/1786890

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