美文网首页
linux后台启动应用

linux后台启动应用

作者: randyjia | 来源:发表于2016-03-01 20:39 被阅读21次

    之前我知道
    <pre>
    command &
    </pre>
    可以把command放在后台。可以一旦shell关闭,命令仍然消失,因为父进程死亡。要实现linux后台启动应用,可以有下面几种方案。

    标准的 service 方式

    <pre>
    etc/init.d
    etc/
    </pre>

    2.nohup方式
    <pre>
    nohup command &> /dev/null
    </pre>

    参考文章

    后台启动logstash
    https://github.com/chenryn/logstash-best-practice-cn/blob/master/get_start/daemon.md)

    相关文章

      网友评论

          本文标题:linux后台启动应用

          本文链接:https://www.haomeiwen.com/subject/djqnkttx.html