如何在 Rails 3.1 应用程序中重新启动瘦集群中的各个服务器

发布于 2024-12-11 11:25:35 字数 277 浏览 0 评论 0原文

我设置了一个瘦集群来启动 3 个服务器:

/etc/thin/myapp.yml

...
wait: 30
servers: 3
daemonize: true
...

,并且我使用 thin restart -C /etc/thin/myapp.yml重新启动。但是,我想一次重新启动每台服务器,以减少停机时间。

例如,有没有办法通过 pid 编号或位置重新启动每个服务器?

I have a thin cluster set up to start 3 servers:

/etc/thin/myapp.yml

...
wait: 30
servers: 3
daemonize: true
...

and the I use thin restart -C /etc/thin/myapp.yml to restart. However, I would like to restart each server at a time, to reduce downtime.

Is there a way to restart each server by pid number or location for example?

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

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

发布评论

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

评论(2

好菇凉咱不稀罕他 2024-12-18 11:25:35

有更好的东西适合你
尝试选项:--onebyone

您还可以将以下行添加到您的配置文件中

onebyone: true

,之后您就可以重新启动瘦集群而无需任何停机。

There is something better for you
try option: --onebyone

you may also add the following line to your config file

onebyone: true

afterwards you able to restart you thin cluster without any downtime.

最丧也最甜 2024-12-18 11:25:35

我知道问题已经得到解答,但我想添加 -o 选项。

所以

thin restart -C /etc/thin/myapp.yml -o 3000

只会启动在端口 3000 上运行的服务器。如果假设您还有另外两台服务器在 3001 和 3002 上运行,它们将保持不变。

-o 也适用于启动和停止命令。

I know the question has been answered, but I'd like to add the -o option to the mix.

So

thin restart -C /etc/thin/myapp.yml -o 3000

Will only start the server running on port 3000. If let's say you have two other servers running on 3001 and 3002, they'll be left untouched.

-o works with start and stop commands too.

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