停止 Erlang 守护进程
除了运行 $killall -9 beam.smp
之外,当我知道 Erlang 节点的 -sname
时,如何以编程方式杀死它?
如果我不希望心跳监视器重新启动该进程,如何确保上述问题的任何答案也会终止心跳?
有没有一个不错的指南来将 Erlang 部署为守护进程?
Besides running $ killall -9 beam.smp
, how can I kill an Erlang node programmatically when I know its -sname
?
If I don't want the heartbeat monitor to restart the process, how can I ensure that whatever answer is given for the above question will also kill the heartbeat?
Is there a decent guide to deploying Erlang as a daemon?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
kill
和killall
与-9
几乎总是错误的。您可以很容易地要求远程节点退出使用:
我不知道这是否会阻止
heart
重新启动它,但我建议如果您希望停止它,您应该'不要以永不停止的模式运行它。更新 - Zed 指出
init:stop
使用heart
做了正确的事情,因此上面的rpc:call
是最好也是唯一的方法。kill
andkillall
with-9
is almost always wrong.You can quite easily ask the remote node to exit using:
I don't know whether that'd prevent
heart
from restarting it, but I'd suggest that if you expect to stop it, you shouldn't run it in a don't-ever-stop mode.Update - Zed points out that
init:stop
does the right thing withheart
, so the aboverpc:call
is the best and only way to do it.