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

mysql5.5 多实例找回密码

时间:2017-04-28 00:19:23      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:flush   use   nbsp   and   ant   bsp   mysqld   --   pass   

1.关闭mysql


 killall mysqld


2.启动时加--skip-grant-tables 参数


mysqld_safe --defaults-file=/data/3306/my.cnf --skip-grant-table &


3.登录


mysql -uroot -p -S /data/3306/mysql.sock (登录时空密码)

 

4.修改密码:


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

mysql5.5 多实例找回密码

标签:flush   use   nbsp   and   ant   bsp   mysqld   --   pass   

原文地址:http://www.cnblogs.com/shijiu520/p/6777854.html

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