MySQL 连接数配置

通过 mysql --help 可以找到配置文件的路径信息

Default options are read from the following files in the given order:
/etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf

可根据实际需要作相应配置;例如,将最大连接数修改为 200

1
vi ~/.my.cnf
1
2
[mysqld]
max_connections = 200

重启 mysql

1
brew services restart mysql

长连接

连接池