发现问题

最近在项目中遇到一个问题,由于连接数过多,提示 “Too many connections” ,需要增加连接数。

我在 /etc/my.cnf中修改了:

max_connections = 2000
mysql> show variables like "max_connections";+-----------------+-------+| Variable_name | Value |+-----------------+-------+| max_connections | 214 |+-----------------+-------+1 row in set

如果我设置连接小于214时,比如 200,那么实际连接数就是 200,也就是说,我的配置文件是没有问题的。

查 MySQL 官方文档,里面说了:

The maximum number of connections MySQL can support depends on the quality of the thread library on a given platform, the amount of RAM available, how much RAM is used for each connection, the workload from each connection, and the desired response time. Linux or Solaris should be able to support at 500 to 1000 simultaneous connections routinely and as many as 10,000 connections if you have many gigabytes of RAM available and the workload from each is low or the response time target undemanding. Windows is limited to (open tables × 2 + open connections) < 2048 due to the Posix compatibility layer used on that platform.
Increasing open-files-limit may be necessary. Also see Section 2.5, “Installing MySQL on Linux”, for how to raise the operating system limit on how many handles can be used by MySQL.

大概意思是 MySQL 能够支持的最大连接数量受限于操作系统,必要时可以增大 open-files-limit。换言之,连接数与文件打开数有关。

解决方法

[root@sqzr ~]# ulimit -n1024

更改 MySQL 在 Linux 的最大文件描述符限制,编辑 /usr/lib/systemd/system/mysqld.service 文件,在文件最后添加:

LimitNOFILE=65535LimitNPROC=65535
$ systemctl daemon-reload$ systemctl restart mysqld.service
mysql> show variables like "max_connections";+-----------------+-------+| Variable_name  | Value |+-----------------+-------+| max_connections | 2000 |+-----------------+-------+1 row in set

https://dev.mysql.com/doc/refman/5.7/en/too-many-connections.html

https://www.oschina.net/question/853151_241231

总结

更多相关文章

  1. android中HttpURLConnection调用getResponseCode()时崩溃 解决方
  2. Android空引用问题的解决方法——on a null object reference
  3. android读取assets大于1M文件的解决方法
  4. 几个Android小错误解决方法
  5. CheckBox android:paddingLeft 不兼容问题解决方法
  6. Android(安卓)Studio使用过程中遇到的问题(一)-- "value 2"异常解
  7. Eclipse中编译Android工程时出现的问题解决方法。
  8. Android(安卓)ListView滑动后背景变黑问题解决方法
  9. Android(安卓)ListView滑动后背景变黑问题解决方法

随机推荐

  1. Android判断应用是否存在
  2. Android之文件&XML
  3. Android Media Framework 总纲
  4. Android Component 简介
  5. Android学习笔记之——UI组件
  6. Android(安卓)NDK开发配置NDK
  7. Android 获取wifi信号强度
  8. Android boot sequence (ANDROID-LEVEL :
  9. android > TimePicker 时间设置控件
  10. android电话拦截及短信过滤