想改mac mysql配置,变为局域网可访问
查看本地mysql的config文件
mysql --verbose --help | grep my.cnf
image.png
找到配置文件在 /opt/homebrew/etc/my.cnf
将127.0.0.1 更改为 0.0.0.0
# Default Homebrew MySQL server config
[mysqld]
# Only allow connections from localhost
bind-address = 0.0.0.0
mysqlx-bind-address = 0.0.0.0













网友评论