修改连接数
临时修改
- 进入Mysql数据库查看 max_connection_errors:
show variables like '%max_connection_errors%';
- 修改 max_connection_errors 的数量为1000:
set global max_connect_errors = 1000;
- 查看是否修改成功:
show variables like '%max_connection_errors%'
;
永久修改
vi /etc/my.cnf
max_connections=1000
- 使用mysqladmin flush-hosts 命令清理一下hosts文件(不知道mysqladmin在哪个目录下可以使用命令查找:whereis mysqladmin)
/usr/bin/mysqladmin flush-hosts -h192.168.1.1 -P3308 -uroot -prootpwd
# 或者
# 进入mysql命令行
flush hosts;
网友评论