Skip to content

随记

积丝成寸,积寸成尺;寸尺水已,遂成丈匹。

1. brew安装mysql

shell
# 安装mysql
brew install mysql
# 初始化mysql
mysql_secure_installation

2. 启动mysql

shell
brew services start mysql

其他常用命令

shell
# 停止mysql
brew services stop mysql
# 重启mysql
brew services restart mysql

3. 目录分布

  • mysql本体 /opt/homebrew/Cellar/mysql
  • mysql配置文件 /opt/homebrew/etc/my.cnf

参考文档

Released under the MIT License.