我的瘦服务器配置了nginx,我的ROR应用正在运行。
当我发布代码更新时运行thin restart
会给我的应用程序带来一些停机时间。我试图想出如何优雅地重新启动正在运行的Thin实例,但我找不到一个好的解决方案。
有没有人能够做到这一点?
答案 0 :(得分:8)
# Restart just the thin server described by that config
sudo thin -C /etc/thin/mysite.yml restart
Nginx将继续运行并代理请求。如果您将Nginx设置为使用多个上游服务器,例如
server {
listen 80;
server_name myapp.mysite.com;
# ...
location / {
try_files $uri $uri/index.html /cache$uri.html $uri.html @proxy;
}
location @proxy {
proxy_pass http://myapp.rails;
}
}
upstream myapp.rails {
server 127.0.0.1:9001 max_fails=1 fail_timeout=10s;
server 127.0.0.1:9002 max_fails=1 fail_timeout=10s;
server 127.0.0.1:9003 max_fails=1 fail_timeout=10s;
}
...然后每个实例将依次重新启动,如果代理停止,Nginx会自动在其中一个代理上路由请求。