我完全按照wiki 中的说明为 sidekiq 安装了一个新贵服务。
也就是说,我有一个新贵脚本,它创建一个进程:
# skipped other insstructions
script
exec /bin/bash <<'EOT'
source /home/me/.my_env
cd /home/me
exec bin/sidekiq -e production
EOT
end script
服务完美启动,但正如人们所见,sidekiq 的 PID 不等于已知的 PID upstart
。
» initctl status sidekiq
# sidekiq start/running, process 16020
» ps axww|grep sidekiq
# 16181 ? Sl 0:41 sidekiq 3.0.0 me[0 of 3 busy]
该配置适用于除 sidekiq 之外的任何其他新贵脚本:
» sudo initctl stop sidekiq
# sidekiq stop/waiting
» ps axww|grep sidekiq
# 16181 ? Sl 0:45 sidekiq 3.0.0 me[0 of 3 busy]
似乎initctl
杀死了 bash 进程,将其视为工作(16020),但底层sidekiq
继续存在:
» ps axww|grep '16181\|16020'
# 16181 ? Sl 0:45 sidekiq 3.0.0 me[0 of 3 busy]
我究竟做错了什么?