- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在运行一个 worker 的多个实例,如以下答案所述:Starting multiple upstart instances automatically
问题:我可以一次重启所有实例吗?
要启动我的 worker,我可以这样做:
initctl start my-workers
然后我可以这样做:
initctl status worker N=1 worker (1) start/running, process 551
initctl status worker N=2 worker (2) start/running, process 552
有没有办法做这样的事情:
initctl restart my-workers
我希望能够重启所有实例而不必知道有多少实例正在运行。
这是我的 my-workers.conf
start on stopped cloud-init
stop on shutdown
env NUM_WORKERS=4
script
for i in `seq 1 $NUM_WORKERS`
do
start worker N=$i
done
end script
和worker.conf
stop on shutdown
chdir /path/to/current
respawn
instance $N
script
exec su -c "/home/worker/.rvm/bin/rvm-shell -c 'bundle exec rake work 2>&1 >> /var/log/worker-$N.log'" worker
end script
最佳答案
在 worker.conf
中你只需要改变这一行:
stop on shutdown
收件人:
stop on stopping my-workers
并更改 my-workers.conf
以使用 pre-start
而不是 script
:
pre-start script
for i in `seq 1 $NUM_WORKERS`
do
start worker N=$i
done
end script
现在 my-workers
将保持状态:因为工作发生在 pre-start
中,所以 my-workers
主进程不会存在,所以不会退出。 stop on stopping my-workers
会导致 worker 在 my-workers
停止时停止。然后当然当它再次启动时它会再次启动工作人员。
(仅供引用,stop on shutdown
什么都不做,因为 shutdown
不是系统事件。man upstart-events
用于所有定义的事件) 所以你还应该将 my-workers 更改为 stop on runlevel [06]
关于ubuntu - 重启 Upstart 实例进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12084025/
我的守护程序重新启动时遇到问题。当守护进程崩溃时,upstart 不会生成守护进程。这是我的 Upstart 初始化文件。请指教。 description "bezkon watch dog" sta
使用 debian 包将 kaa -iot 平台配置为单节点时。我收到以下错误。 himanshu@himpc:~/kaa/deb$ sudo dpkg -i kaa-node-0.10.0.deb
我对 bash 脚本编写相当陌生,但感觉我真的缺少一些基本的东西。我正在尝试 Mike Perham's upstart sidekiq script 的几乎没有修改的版本在 Ubuntu 14.04
当我尝试使用 virtualbox 在标准 ubuntu/vivid64 上“vagrant up”时出现以下错误:initctl: Unable to connect to Upstart: Fai
我正进入(状态 $ sudo initctl list initctl: Unable to connect to Upstart: Failed to connect to socket /com/
在我的 Upstart 脚本(Ubuntu 12.04.2)中,我有以下内容: exec touch /tmp/000 exec echo "ds1307 0x68" > /sys/class/i2
我正在定制在基于 arm 的嵌入式系统上运行的 ubuntu。我没有使用 plymouth (splash) 来隐藏启动消息,而是使用了一个名为 psplash 的自定义可执行文件,它直接写入帧缓冲区
我使用了 Upstart 为 console output 提供的示例. /etc/init/test.conf console output pre-start script # Perform
我正在尝试创建一个服务/脚本来自动启动和控制我的 nodejs 服务器,但它似乎根本不起作用。 首先,我使用这个来源作为主要引用http://kvz.io/blog/2009/12/15/run-no
我在 Ubuntu 上使用 upstart 来管理服务。它写信给 /var/log/upstart/.log .此文件中的错误没有时间戳,这使得诊断问题变得困难。 有没有办法——配置文件中的某种节——
我在亚马逊Linux上按照本教程https://uwsgi.readthedocs.org/en/latest/Upstart.html创建了uwsgi文件。尽管它似乎没有像Nginx那样运行,只是说
我有一个基于java的应用程序要在ubuntu上运行,为了启动服务器并使其保持 Activity 状态,我编写了一个upstart脚本。 问题是upstart服务启动了,它消耗了100%的cpu,这个
我是第一次尝试使用 upstart。我有两个要启动的 Java 程序。第一个是在 jetty 上运行的 solr 搜索服务器,第二个是自定义爬虫,应该在 solr 服务器启动后启动。 我的爬虫初始化脚
我制作了一个完全出乎我意料的 Upstart 脚本。 愚蠢的测试.conf script VALUE="PONG" echo "START" >> /var/log/stupid-test.l
我有这个 python 脚本可以通过图形窗口打开 VNC session 。它坐在那里阻塞等待特定消息进入,然后在从命令提示符运行时成功生成图形窗口。 但是如果我将它放在一个 Upstart .con
我有 python 程序(几个脚本)需要在 CentOS 6.4 远程机器上作为守护进程运行。所以,我认为 Upstart 是正确的选择。 基本要求是: 启动/停止守护程序的简单方法 如果应用程序崩溃
我有一个要部署的 Django 应用程序。我想使用 upstart 来运行该应用程序。 到目前为止,我已经将 upstart.conf 文件添加到/etc/init 并尝试使用 运行它 start u
我很难找出我的脚本出了什么问题。我是 Linux 世界的新手,所以我可能会错过一些非常微不足道的东西。我有一个 python 脚本,我想在电脑启动时运行一个守护进程。我还想在崩溃时重生它。在谷歌搜索了
这是我在 Ubuntu 11.04 上遇到的一个问题,我为 Node 和 Nginx 制作了两个 upstart 脚本。我将在这里使用 Node 作为示例。我在 http://howtonode.or
我是 Upstart 。下面是“myserver”守护进程的 Upstart 配置。它工作正常,但我想在发出“stop myserver”时执行自定义命令,以彻底关闭它。 start-stop-dae
我是一名优秀的程序员,十分优秀!