访问负载平衡tomcat后面的特定服务器
我正在构建生产配置,其中 2 个 tomcat 位于 apache 后面,带有负载平衡器和 mod_proxy。我需要的是检查 tomcat 的特定实例是否正在运行的脚本。问题是我在 tomcat 中使用 AJP 连接器。是否可以以某种方式向 apache 发出 HTTP 请求,以确保只有需要的 tomcat 实例才会响应?
I'm building production configuration where 2 tomcats are sitting behind the apache with load-balancer and mod_proxy. What I need is the script which checks whether particular instance of tomcat is running. The problem is I use AJP connector in tomcat. Is it possible to issue HTTP request to apache somehow that I make sure only needed instance of tomcat will respond?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 mod_proxy_balancer
但平衡器的大部分内容都记录在 mod_proxy 中
如果您将代理反转为平衡器,平衡器将选择可用的后端。
Take a look at mod_proxy_balancer
But most parts of balancer are documented in mod_proxy
If you revers proxy to a balancer, the balancer will choose a backend which is available.