apache httpd reload|graceful 上的 mod_jk 粘性会话会发生什么情况

发布于 2024-10-13 03:44:50 字数 87 浏览 4 评论 0原文

正如标题中所述,我想知道如果我通过重新加载或优雅地重新启动apache网络服务器(在linux(centos5)上运行),是否会保留活动的mod_jk粘性会话。

As said in the title, i'd like to know if active mod_jk sticky sessions will get preserved if i restart apache webserver with reload or graceful (running on linux (centos5)).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黄昏下泛黄的笔记 2024-10-20 03:44:50

是的,他们会的。

粘性的工作原理是查看会话 cookie 中的节点标识符 - mod_jk 查看 cookie 中的节点名称,并将其发送到与该名称匹配的工作程序。它实际上并不维护内部会话表,因此扩展性不佳。从这个角度来看,它是有效的无状态,因此重新启动不会影响粘性。

Yes, they will.

The stickiness works by looking at the node identifier in the session cookie - mod_jk looks at the node name in the cookie, and sends it to the worker that matches that name. It doesn't actually maintain an internal table of sessions, that doesn't scale well. It's effectivelt stateless from that perspective, so a restart will not affect stickiness.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文