mac安装mysql时会给出一个临时密码 记录下来
2018-03-17T02:14:10.809431Z 1 [Note] A temporary password is generated for root@localhost: tiBVf3f_fC5I
If you lose this password, please consult the section How to Reset the Root Password in the MySQL reference manual.
打开终端
登入mysql
mac下访问mysql命令/usr/local/mysql/bin/mysql -u root -p
输入临时密码 这里是tiBVf3f_fC5I
重置默认密码
alter user 'root'@'localhost' identified by '要设置的密码';