mysql

安装mysql

1
2
brew install mysql
brew services start mysql

重启mysql

1
mysql.server restart

配置文件位置

1
/usr/local/etc/my.cnf

允许远程连接

1
2
更改my.cnf中的 bind-address = 127.0.0.1
为 bind-address = 0.0.0.0