Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须将mysql的max_connection限制增加到1000。
通过 SET GLOBAL max_connection=1000 编辑 /etc/my.cnf。
它更新了 max_connections=1000 的变量大小,但是当我分别用 100,200...400 个并发用户测试我的站点时,max_connection 不能超过 150。
请帮我解决这个问题。
谢谢,
重新启动您的服务器。要使任何配置生效,都需要重新加载。
它不适用于“并发用户”,这意味着您可以打开多少个连接。
带宽起着重要的作用。你得到的响应头是什么?你确定它只是 MySQL 吗?1000 个并发用户 = 1000 个并发数据库查询。绕线机制呢?
你想要做的是max_user_connections而不是max_connections。当你写“*我分别用 100,200...400 个并发用户测试我的网站,但 max_connection 不能超过 150.*”时,我假设它
max_user_connections
max_connections