mac通过brew安装配置MySql

文章目录

mac 安装MySql

1.安装brew

brew 是MacOS上的包管理工具,可以简化 macOS 和 Linux 操作系统上软件的安装。

安装命令:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
如果安装失败,使用国内镜像:
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

2.安装MySQL

安装命令:brew install mysql@5.7
mac通过brew安装配置MySql

3.配置环境变量

echo 'export PATH="/usr/local/opt/mysql@5.7/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile

mac通过brew安装配置MySql

4.启动服务

brew services start mysql@5.7
mac通过brew安装配置MySql

5.初始化,设置密码

mysql_secure_installation
mac通过brew安装配置MySql

6.测试连接

打开idea的database面板,输入密码,点击Test Connection,看到绿色的勾子就说明MySql安装成功了。
mac通过brew安装配置MySql

7.关闭服务

mysql.server stop
brew services stop mysql@5.7

上一篇:mac os-Homebrew的安装及使用


下一篇:【解决】brew 不可用问题处理, 加速