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

mysql8.0.18忘记密码问题

时间:2020-01-29 14:14:59      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:tar   tail   memory   where   detail   ons   启动   user   文章   

mysql8.0.18忘记密码问题

  1. 管理员身份进入dos

  2. 停止mysql服务
    net stop mysql

  3. 无密码启动
    C:\Windows\System32>D:\mysql-8.0.18-winx64\bin\mysqld --console --skip-grant-tables --shared-memory
  4. 另启一个dos窗口,无密码登录
    C:\Windows\System32>D:\mysql-8.0.18-winx64\bin\mysql -u root
  5. 清空密码
    注意:authentication_string采用的是plugin加密方式,故设置为空,不要设置为其他值
    mysql> UPDATE mysql.user SET authentication_string=’’ WHERE user=‘root’;
  6. 启动服务
    关闭打开的两个dos窗口,然后以管理员身份重新打开一个dos窗口,启动服务
    net start mysql
  7. 无密码登录
    C:\Windows\System32>D:\mysql-8.0.18-winx64\bin\mysql -u root
  8. 重新设置密码
    alter user root@localhost identified by ’root’;
  9. 新密码登录
    C:\Windows\System32>D:\mysql-8.0.18-winx64\bin\mysql -u root -proot
    ————————————————
    版权声明:本文为CSDN博主「Evanzzxcw」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/Evanzzxcw/article/details/102795361

mysql8.0.18忘记密码问题

标签:tar   tail   memory   where   detail   ons   启动   user   文章   

原文地址:https://www.cnblogs.com/carle/p/12240034.html

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