博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Mysql 5.7初始化密码

Posted on 2016-07-04 14:43  bug yang  阅读(1170)  评论(0编辑  收藏  举报

一、MAC Mysql安装

1、下载dmg安装

从http://dev.mysql.com/downloads/mysql/下载dmg安装

二、Mysql密码修改

1、通过mysql -uroot -ppwd进入到命令行,会发现任何操作都会出现ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement。也就是必须立刻修改密码。

修改密码方法:

ALTER USER 'root'@'localhost' IDENTIFIED BY 'pwd' ;

update mysql.user set authentication_string=PASSWORD('pwd') where user='root' and host='localhost';

flush privileges;

修改完毕