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.
我们的应用程序在 JBOSS 上运行,其前端在 Apache 上运行。在外部访问 URL 时,JSESSIONID 会在 cookie 的 Content 属性中显示服务器名称。
有什么想法可以删除吗???
谢谢,
mod_jk 将 worker 的名称添加到 cookie 以记住必须将即将到来的请求定向到哪个 tomcat。
默认情况下,worker 名称等于在 tomcat 上配置的 jvmRoute,在 server.xml 中的 <Engine> 标记中。
您可以更改workers.properties 以使用另一个worker 名称,但您需要添加jvm_route 定义:
... worker.myworker.jvm_route=<jvm-route-as-specified-in-tomcat-conf> ...