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

Mac 安装 MySQL 5.7 后登入后无法执行命令【You must reset your password using ALTER USER statement before executing this statement.】

时间:2018-06-01 14:28:35      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:for   IV   一个   启动服务   tin   show   roo   base   password   

今天在 Mac 上安装了 MySQL 5.7 ,启动服务后,输入 mysql -u root -p 后,输入初始密码程,尝试执行 show databases; 

报了一个 You must reset your password using ALTER USER statement before executing this statement. 错误。

参考 Stack Overflow 上一篇文章 https://stackoverflow.com/questions/33467337/reset-mysql-root-password-using-alter-user-statement-after-install-on-mac

步骤如下:

set password = password(‘your new password‘);

alter user ‘root‘@‘localhost‘ password expire never;

flush privileges;

技术分享图片

 

Mac 安装 MySQL 5.7 后登入后无法执行命令【You must reset your password using ALTER USER statement before executing this statement.】

标签:for   IV   一个   启动服务   tin   show   roo   base   password   

原文地址:https://www.cnblogs.com/zacky31/p/9121302.html

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