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

mysql 忘记root密码

时间:2017-06-30 17:12:07      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:update   upd   div   star   my.cnf   pass   mysqld   忘记   table   

1、停止服务:

service mysqld stop

2、修改my.cnf:

1 vim /etc/my.cnf
2 
3 # 添加
4 skip-grant-tables

3、启动服务:

service mysqld start

4、登陆并修改密码:

1 # 登陆数据库
2 mysql
3 # 修改密码
4 update mysql.user  set password=password(newpassword) where user=root

5、密码修改完成后,将my.cnf文件中添加的skip-grant-tables语句注释或删除掉,然后重启数据库即可

 

mysql 忘记root密码

标签:update   upd   div   star   my.cnf   pass   mysqld   忘记   table   

原文地址:http://www.cnblogs.com/gouge/p/7099351.html

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