gpt4 book ai didi

tomcat - 将并发 session 限制为 Apache tomcat Web 应用程序

转载 作者:行者123 更新时间:2023-11-28 22:17:35 32 4
gpt4 key购买 nike

我正在使用基于 Apache Tomcat 的 Web 应用程序。如何限制此应用程序的并发连接数,以防止超过特定数量的用户访问它?

我不是程序员,如果有不用代码的方法就完美了。

最佳答案

要限制同时连接数,请修改您的<Connector> conf/server.xml中的配置:

<Connector ...
maxConnections="10"
/>

您几乎可以将该值设置为任何值。但这并不限制在任何给定时间可以“使用”该系统的用户数量。如果您使用 HTTP session 来跟踪“已登录用户”,那么您可以通过修改应用程序的 META-INF/context.xml 来限制同时 session 的数量。要包含的文件:

<Manager ...
maxActiveSessions="10"
/>

您可以将其设置为任何您想要的。

https://tomcat.apache.org/tomcat-8.0-doc/config/http.html#Standard_Implementation https://tomcat.apache.org/tomcat-8.0-doc/config/manager.html

关于tomcat - 将并发 session 限制为 Apache tomcat Web 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39374640/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com