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

mysql忘记root密码

时间:2018-06-08 15:48:45      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:date   sql   with   user   color   start   IV   update   HERE   

1,service mysql stop       # mysql5.1版本的服务名是 mysqld,而mysql5.6版本的二进制包的服务名是 mysql.

2, /etc/init.d/mysql start  --skip-grant-tables

3,mysql

>  此时就可以在mysql里面修改root密码了

mysql> update mysql.user set password= password(‘123456‘) where user=‘root‘;

4,/etc/init.d/mysql stop 

5, mysql -uroot -p123456     # ------> 此时就可以进入到MySQL了。

mysql>  

 

mysql> grant all privileges on *.* to root@‘localhost‘ identified by ‘123456‘;    #这条命令在 --skip-grant-tables状态下修改不了密码表。
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it ca
mysql>

mysql忘记root密码

标签:date   sql   with   user   color   start   IV   update   HERE   

原文地址:https://www.cnblogs.com/kaishirenshi/p/9155604.html

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