Apache BalancerMember 可以配置为使用 unix 域套接字吗?

发布于 2024-08-08 20:50:11 字数 671 浏览 6 评论 0原文

我正在使用 Apache 代理平衡器指令来连接一组瘦服务器(用于 Rails)。

像这样:

  <Proxy balancer://thinservers>
    BalancerMember http://127.0.0.1:5000 route=thin0
    BalancerMember http://127.0.0.1:5001 route=thin1
    BalancerMember http://127.0.0.1:5002 route=thin2
  </Proxy>

但是,thin 也可以配置为使用 unix 域套接字。

所以我希望能够做类似的事情:

  <Proxy balancer://thinservers>
    BalancerMember unix://tmp/thin.0.sock route=thin0
    BalancerMember unix://tmp/thin.1.sock route=thin1
    BalancerMember unix://tmp/thin.2.sock route=thin2
  </Proxy>

但 Apache 不接受它。 显然 nginx 可以做到,但我真的想使用 Apache。

有办法吗?

I am using the Apache Proxy balancer directive to hook up a set of thin servers (for Rails).

Like so:

  <Proxy balancer://thinservers>
    BalancerMember http://127.0.0.1:5000 route=thin0
    BalancerMember http://127.0.0.1:5001 route=thin1
    BalancerMember http://127.0.0.1:5002 route=thin2
  </Proxy>

However, thin can also be configured to use unix domain sockets.

So I want to be able to do something like:

  <Proxy balancer://thinservers>
    BalancerMember unix://tmp/thin.0.sock route=thin0
    BalancerMember unix://tmp/thin.1.sock route=thin1
    BalancerMember unix://tmp/thin.2.sock route=thin2
  </Proxy>

But Apache is not taking it.
Apparently nginx can do it, but I really want to use Apache.

Is there a way?

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

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

发布评论

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

评论(1

黑白记忆 2024-08-15 20:50:11

简短的回答,不。

来自http://httpd.apache.org/docs/2.2/mod/mod_proxy_balancer。 html

它提供负载平衡支持
HTTP、FTP 和 AJP13 协议

因此这些是唯一受支持的协议。

Short answer, no.

From http://httpd.apache.org/docs/2.2/mod/mod_proxy_balancer.html

It provides load balancing support for
HTTP, FTP and AJP13 protocols

So those are the only protocols supported.

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