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

mysql 忘记密码

时间:2018-11-14 16:43:38      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:bubuko   local   word   改密码   查看   版本   alt   under   mysq   

一, 停止mysql程序

     /etc/init.d/mysqld stop  或者 kill 杀mysql的进程id

   通过安全模式启动数据库

  mysqld_safe --skip-grant-tables --skip-networking &

  查看原来数据库密码字段信息

  技术分享图片

   更改密码:

    5.6版本

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

   技术分享图片

   5.7版本以上

     update mysql.user set authentication_string=PASSWORD(‘123‘) where user=‘oldboy‘ and host=‘10.0.0.%‘;  

mysql 忘记密码

标签:bubuko   local   word   改密码   查看   版本   alt   under   mysq   

原文地址:https://www.cnblogs.com/kingle-study/p/9958366.html

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