- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是 Capistrano 的输出:
02:05 sidekiq:start
01 sudo service sidekiq start index=1
01 sidekiq (1) start/running, process 26392
✔ 01 deployer@IP 0.721s
02 sudo service sidekiq start index=2
02 sidekiq (2) start/running, process 26505
✔ 02 deployer@IP 0.728s
ps aux | grep sidekiq
后,没有进程在运行。所以我回到我的本地终端选项卡并运行
cap staging sidekiq:start
ps aux | grep sidekiq
deployer 489 52.0 1.0 76344 40856 ? Rs 13:13 0:00 /home/deployer/.rvm/rubies/ruby-2.6.3/bin/ruby /home/deployer/.rvm/gems/ruby-2.6.3/bin/bundle exec sidekiq -i 1 -e staging
deployer 695 0.0 0.0 10472 936 pts/0 S+ 13:13 0:00 grep --color=auto sidekiq
deployer 32744 42.2 1.4 111100 56188 ? Rs 13:13 0:02 /home/deployer/apps/app-staging/shared/bundle/ruby/2.6.0/bin/sidekiq -i 2 -e staging
RAILS_ENV=staging bundle exec sidekiq
- Sidekiq 正在运行。但是第二次我重新启动服务器/部署新代码,Sidekiq 进程被杀死。
namespace :sidekiq do
desc "Tells Sidekiq (with signal TSTP) it will be shutting down at some point in the near future."\
" It will stop accepting new work but continue working on current messages"
task :quiet do
on roles(:app) do
puts capture("pgrep -f 'sidekiq' | xargs kill -TSTP")
end
end
desc "Signals that Sidekiq should shut down within the -t timeout option given at start-up (see config/sidekiq.yml)."\
" It will stop accepting new work, but continue working on current messages (as with USR1)."\
" Any workers that do not finish within the timeout are forcefully terminated"\
" and their messages are pushed back to Redis to be executed again when Sidekiq starts up. "
task :terminate_gracefully do
on roles(:app) do
puts capture("pgrep -f 'sidekiq' | xargs kill -TERM")
end
end
desc "Starts sidekiq workers. Fails if there are already running processes."
task :start do
on roles(:app) do
pids = capture("pgrep -f 'sidekiq'; true")
puts "Present sidekiq process pids #{pids}"
if pids.split("\n").count == 1
# For each worker service with index ID is called
execute "sudo service sidekiq start index=1"
execute "sudo service sidekiq start index=2"
else
puts "##------------------------------------------------------------------##"
puts "Sidekiq was not terminated before start execution. Wait untils it is finished and start it again (or kill the processes)."
puts "##------------------------------------------------------------------##"
end
end
end
task :restart do
invoke "sidekiq:terminate_gracefully"
invoke "sidekiq:start"
end
end
最佳答案
Sidekiq 6.0 不再依赖守护进程,请参阅重大更改:
https://github.com/mperham/sidekiq/blob/master/Changes.md#60
BREAKING CHANGE Remove the daemonization, logfile and pidfile arguments to Sidekiq. Use a proper process supervisor (e.g. systemd or foreman) to manage Sidekiq. See the Deployment wiki page for links to more resources.
关于ruby-on-rails - 将 Sidekiq 升级到 v6 后,它不会在生产环境中自动启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60831870/
我在一个网站上工作,该网站在生产中只有 aspx 文件和 bin 目录和文件。任何人都知道这个网站是如何部署的,我通常有我的网站,我也会提交代码。 我的问题 2. 如何在同一台服务器上创建测试网站?我
您好,我认为这应该是一个相当简单的问题,但我对管理 git 不太熟悉。 我使用的是非常流行的 http://nvie.com/posts/a-successful-git-branching-mode
目前我的网站(生产服务器)已经有很多代码了。现在我想开始在我的项目中使用 Git 并为我的团队设置一个暂存服务器。谁能给我任何建议? 这是我脑海中的画面: Production
我目前正在学习 Erlang SO 用户能否提供有关他们的任何 Erlang 应用程序部署的有趣示例? 我想深入了解 Erlang 在过去的电信中的常见用途,以及 Erlang 在开发/部署过程中带来
我关注了Ryan's screencast并部署到 VPS。所以我使用 Unicorn + nginx + github + Ubuntu 12.04 LTS + capistrano。我也使用 i1
我想在 Azure 中维护临时环境和生产环境。每个都应该有自己的 blob 存储和 sql 存储。实现这一目标的最佳方法是什么?设置临时和生产 SQL Server 以及两个 Blob 存储帐户? 最
我无法使用 Electron 打包程序在内置的 Electron 应用程序中打开chrome开发工具。 我已经尝试过mainWindow.webContents.openDevTools(),但这没有
我有一个 Azure 应用程序服务环境。 可以在同一个 ASE 中运行多个应用服务计划(开发、测试和生产)吗? 基本上,我知道他们会共享前端池,我认为这很好,因为那里没有运行应用程序代码,并且它“..
我是 Maven 新手,有 Rails 背景。在较高级别上,如果我正在运行测试、在本地运行应用程序以及在部署到生产环境时,我希望连接到不同的数据库。 这就是我的想法。当我运行 mvn test 时,它
我有一个 Azure 应用程序服务环境。 可以在同一个 ASE 中运行多个应用服务计划(开发、测试和生产)吗? 基本上,我知道他们会共享前端池,我认为这很好,因为那里没有运行应用程序代码,并且它“..
我正在使用 faSTLane\produce 脚本制作一个新应用程序,我收到以下错误消息: in `parse_response': {"data"=>nil, "messages"=>{"warn"
使开发人员能够构建包含私有(private)数据的系统的当前做法是什么?谁能指出这类事情的“最佳实践”指南? 我们这里有一个 Catch-22,因为开发人员需要编写与具有被认为是“私有(private
我有一个连接 Azure SQL Server 的 Azure 云服务。当我第一次设置这个时,我真的不太了解自己在做什么,只是想熟悉 Azure。所以现在我想利用我所拥有的东西并将其转变为可靠的部署结
我是 Cordova 的新手。抱歉,如果这些是业余问题。我想详细了解典型手机应用程序的设置和架构。 我有一个本地版本的 Meteor Cordova 正在运行,它通过 Modulus 连接到远程服务器
我一直在寻找一些在一些 POS(销售点)设备和服务器之间同步数据的选项。 SymmetricDS似乎是具有商业友好许可证的选项之一。作为一个 Codehaus 项目确实保证了一定程度的质量,所以我同意
在 PHP 开发中,可以通过服务器的“环境”变量确定应用程序是在生产环境还是开发环境中运行。 在 tomcat 服务器上是否有类似的变量可用,或者是否有更好的方法将应用程序用于生产和开发? 最佳答案
我正在做一个项目,我需要使用 TwitterAPI 检索 Twitter 消息,处理它们并将它们存储在数据库中。我正在使用 Producer/Consumer BlockingQueue,其中元素的作
这个问题类似于:iPhone development - what is the difference between a development and distribution provision
我正在尝试根据 URL 在 Drupal 中设置环境。例如,如果我访问 mysite.local,它将使用 localdb 并将站点名称更改为“Local Mysite”;如果我转到 mysite.c
我今天一直在阅读 Magento 中的数据库同步。 我目前正在努力解决的一件事是在开发期间和上传到生产期间需要同步什么。现在假设一批更改将包含对数据库和类似代码的更改,下面是我对模型工作流的理解(我目
我是一名优秀的程序员,十分优秀!