码迷,mamicode.com
首页 > 其他好文 > 详细

忘记root密码--重置密码

时间:2016-10-09 19:50:41      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

(1)停止mysql服务

(2)启动mysql服务
mysqld_safe --defaults-file=/etc/my.cnf --skip-grant-tables --skip-networking &

(3)无密码登录,并修改root用户密码
update mysql.user set password=password("password") where user=‘root‘ and host=‘localhost‘;

(4)关闭mysql服务
mysqladmin -u root -p shutdown

(5)正常启动mysql服务器

忘记root密码--重置密码

标签:

原文地址:http://www.cnblogs.com/haha1274015449/p/5943264.html

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