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

忘记MySQL密码,如何破?

时间:2015-05-23 06:36:31      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:mysql

1.单实例情况

现将数据库停掉

/etc/init.d/mysqld stop

使用如下命令启动数据库

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

现在可以使用mysql命令登陆了

mysql -uroot

然后就可以改密码了

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


2.多实例情况

先将数据库停掉,然后使用如下命令启动数据库

/bin/sh /app/mysql/bin/mysqld_safe --defaults-file=/data/3306/my.cnf --skip-grant-tables --user=mysql &

登陆

mysql -uroot -S mysql.sock

然后就可以改密码了

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

mysql>flush privileges;

本文出自 “老暖男的博客” 博客,请务必保留此出处http://ashine.blog.51cto.com/1632639/1654067

忘记MySQL密码,如何破?

标签:mysql

原文地址:http://ashine.blog.51cto.com/1632639/1654067

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