daemon

Posted jiu__

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了daemon相关的知识,希望对你有一定的参考价值。

关于daemon,其最简单的用法是:

if(daemon(0, 0) == -1)
    return -1;

将上面代码放置程序中,程序执行到这一行,就会自动进入后台运行,不再与终端交互,即终端再输入的参数无效,程序的输出(比如printf等)无效。通常,daemon会用于服务器程序中。

 

以上是关于daemon的主要内容,如果未能解决你的问题,请参考以下文章

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?(代码

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?(代码

daemon

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?(代码

[PHP] swoole在daemonize模式下,chdir失效问题

使用commons-daemon启动关闭java程序