在 macOS 上安装 MySQL 5.7
安装 Homebrew
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安装 MySQL
在编写文章时,Homebrew 默认使用 MySQL8 版本,但由于我们的目标是获得 5.7 版本,因此需要将 @5.7 附加到默认的包密钥中:
输入以下命令安装 MySQL5.7
$ brew install [email protected]
其他配置
安装 brew services
$ brew tap homebrew/services
开启 MySQL 服务
$ brew services start [email protected]5.7
检查 MySQL 是否成功加载
$ brew services list
强制链接 5.7 版本
$ brew link [email protected]5.7 --force
检查 MySQL 版本
$ mysql -V
初始化设置 root 密码
mysql_secure_installation
登录
mysql -uroot -p
参考链接:
https://gist.github.com/operatino/392614486ce4421063b9dece4dfe6c21
原文地址:https://www.cnblogs.com/ryanzheng/p/11406662.html
时间: 2024-10-24 13:06:58