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

mysql忘记密码

时间:2016-04-10 19:45:34      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:mysql   忘记密码   

mysql密码丢失找回

步骤

1 停止数据库 

/etc/init.d/mysqld stop

2 使用--skip-grant-tables 忽略授权表启动数据库服务

/usr/local/mysql/bin/mysqld_safe --skip-grant-tables &

3 mysql 直接进入更改密码

update mysql.user set password=password(‘c110123‘) where user=‘root‘ and host=‘localhost‘;

   

flush privileges;

4 退出 

quit

5 重新启动mysqld,先关闭

用这个方式去关闭 

mysqladmin -uroot -pc110123 shutdown


这个时候不能用 /etc/init.d/stop 因为是mysqld_safe 启动的

6 启动

/etc/init.d/mysqld start

技术分享


本文出自 “崔德华运维打工从业路” 博客,请务必保留此出处http://cuidehua.blog.51cto.com/5449828/1762141

mysql忘记密码

标签:mysql   忘记密码   

原文地址:http://cuidehua.blog.51cto.com/5449828/1762141

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