systemd

作者: 寂寞的原子 | 来源:发表于2016-03-18 23:07 被阅读81次

    Ubuntu下换成了systemd控制开机自启动,据说很厉害。
    我之前不知道从哪里搜到了配置一个自启动的service的方法,后来就忘了,然后一直不知道我的程序为什么会自动运行,汗。。。然后费了好大劲终于又找到了systemd,赶紧记录下来:

    /lib/sytemd/system/some.service

    [Unit]
    Description=My service
    After=network.target
    
    [Service]
    ExecStart=/full/path/to/binary
    
    [Install]
    WantedBy=multi-user.target
    

    然后

    $ systemctl enable|disable|start|stop some
    

    更多帮助信息:这里

    相关文章

      网友评论

          本文标题:systemd

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