当前位置: 首页 > 工具软件 > Demon > 使用案例 >

让服务程序进入demon模式的代码

邰英毅
2023-12-01

Redis中让服务程序进入demon模式的代码,具有很好的参考意义:

void daemonize(void) {
    int fd;

    if (fork() != 0) exit(0); /* parent exits */
    setsid(); /* create a new session */

    /* Every output goes to /dev/null. If Redis is daemonized but
     * the 'logfile' is set to 'stdout' in the configuration file
     * it will not log at all. */
    if ((fd = open("/dev/null", O_RDWR, 0)) != -1) {
        dup2(fd, STDIN_FILENO);
        dup2(fd, STDOUT_FILENO);
        dup2(fd, STDERR_FILENO);
        if (fd > STDERR_FILENO) close(fd);
    }
}

使用方法为:
if (server.daemonize) daemonize();


 类似资料: