如何访问多个Web服务器上的beanstalk队列

发布于 2024-12-09 02:55:44 字数 160 浏览 1 评论 0原文

我已在一台服务器上安装了 beanstalk。我们有多个要在其上使用 beanstalk 的生产服务器。目前只有 1 个 Web 服务器可以访问 beanstalkd。

如何配置或使用beanstalkd,以便我们可以访问所有服务器上的beanstalkd。

感谢您的帮助。

I have installed beanstalk on one server.we have multiple production servers on which we want to use beanstalk. Currently only 1 web server has access to beanstalkd.

How to configure or use beanstalkd so that we can access the beanstalkd on all servers.

Appreciate your help.

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

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

发布评论

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

评论(1

死开点丶别碍眼 2024-12-16 02:55:44

我不知道具体问题是什么,但这里有一个通用检查表,以确保可以从其他计算机访问 IP/端口

  • 确保 Beanstalkd 位于公共、可路由的 IP 地址(不是 127.0.0.1)上
  • 打开任何防火墙为了使其他机器能够与其通信,
  • 请从您想要与 Beanstalkd 通信的其他机器进行测试
    • telnet 1.2.3.4 11300(其中 1.2.3.4 是计算机的 IP 地址)
      <块引用>

      统计数据

      退出

像任何其他服务一样,您的服务器应该能够通过 IP 地址连接到 Beanstalkd。以 Pheanstalk 库为例,构造函数的第一个参数是服务器的 IP 地址。

I don't know what the specific issue is, but here's a generic check-list to ensure that the IP/Port is accessible from other machines

  • Ensure Beanstalkd is on a public, routable IP address (not 127.0.0.1)
  • open up any firewalls to enable the other machines to communicate with it
  • test from the other machines you want to talk to Beanstalkd from
    • telnet 1.2.3.4 11300 (where 1.2.3.4 is the machine's IP address)

      stats

      quit

Like any other service, your servers should be able to connect to the Beanstalkd by IP address from there. With the the Pheanstalk library, for example, the first argument to to the constructor is the IP address of the server.

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