MYSQL Mac 安装完全指南 5.7.x +

到官网下载mysql mac安装文件,可选dmg文件

MySQL最新版:下载地址

安装完成后,在设置中,打开mysql控制面板,关闭服务器。

在PATH中加入mysql安装路径,以便可以直接使用mysql命令行。

$ vim ./ bash_profile

export PATH=$PATH:/usr/local/mysql/bin

打开安全模式

sudo mysqld_safe --skip-grant-tables

另开一个终端窗口

mysql -u root

// 5.7以前版本使用,5.7以后版本不再使用
// UPDATE mysql.user SET Password=PASSWORD('password') WHERE User='root’;

UPDATE mysql.user SET authentication_string=PASSWORD(’new password') WHERE User='root';

exit //退出

关闭安全模式的终端窗口,停止终端运行。

如果密码是简单密码或其他原因,可能会出现:

ERROR 1862 (HY000): Your password has expired

错误,此时,需要重新打开mysql

mysql -u root -p
\输入密码

SET PASSWORD=PASSWORD(’new password');

1 Comment

  1. Dr_Kumbla

    It’s the best time to make some plans for the long run and it’s time
    to be happy. I’ve learn this publish and if I may I want
    to recommend you some interesting issues or tips. Maybe you can write
    next articles relating to this article. I desire to read more issues
    about it!

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注