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

【mysql】linux, mac mysql数据库root 密码忘记修改

时间:2018-09-21 10:50:33      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:系统   tables   linux   where   pass   执行   oca   enter   Linux 系统   

首先关闭正在运行的mysqld进程

  1. 执行mysqld_safe --skips-grant-tables & 
  2. 双击enter 键进入命令行模式
  3. 执行 mysql
  4. linux 系统执行:update mysql.user set password = password(‘root‘) where user = ‘root‘ and host = ‘localhost‘;
  5. mac 系统执行:update mysql.user set authentication_string=password(‘root‘) where user = ‘root‘ and host = ‘localhost‘;
  6. 刷新权限:flush privileges;
  7. 退出:quit
  8. 杀死mysqld进程,然后重新连接 :mysql -uroot -proot 
  9. 完成

【mysql】linux, mac mysql数据库root 密码忘记修改

标签:系统   tables   linux   where   pass   执行   oca   enter   Linux 系统   

原文地址:https://www.cnblogs.com/china-flint/p/9684902.html

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