Systemctl 守护进程仅在启用 verbose 时起作用

Systemctl 守护进程仅在启用 verbose 时起作用

我在 init.d 中有一个守护进程,除了名称和描述之外,其结构与标准 ubuntu 完全相同骨架文件。当我尝试使用运行所述守护进程时

sudo /etc/init.d/mydaemon start

我收到一条错误消息,启动守护程序失败并显示以下消息

Control process exited, code=exited, status=1/FAILURE

这并不是很有帮助,因为据我所知,代码 1 并没有真正的意义。在调试这个过程时,我有一次决定将 /lib/init/vars.sh 中的详细变量从 no 更改为 yes,只是为了引发一些输出,并且在执行此操作后,守护进程将完美运行。然而,当我将 verbose 改回 no 时,我会遇到与以前相同的错误。你们中有人遇到过这样的事情吗?现在可能是什么原因造成的?

另外,守护程序代码是用 C++ 编写的,如下所示(尽管我认为它与此不一定相关):

#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <syslog.h>
#include <string.h>
#include <string>

using namespace std;

#define DAEMON_NAME "mydaemon"

void process(){

    syslog (LOG_NOTICE, "Writing to log from Daemon");
}

int main(int argc, char *argv[]) {

    //Set our Logging Mask and open the Log
    setlogmask(LOG_UPTO(LOG_NOTICE));
    openlog(DAEMON_NAME, LOG_CONS | LOG_NDELAY | LOG_PERROR | LOG_PID, LOG_USER);

    pid_t pid, sid;

   //Fork the Parent Process
    pid = fork();

    if (pid < 0) {
      exit(EXIT_FAILURE);
    }

    //We got a good pid, Close the Parent Process
    if (pid > 0) { exit(EXIT_SUCCESS); }

    //Change File Mask
    umask(0);

    //Create a new Signature Id for our child
    sid = setsid();
    if (sid < 0) {
      exit(EXIT_FAILURE); }

    // Change to root
    chdir("/");

    //Close File Descriptors
    int x;
    for (x = sysconf(_SC_OPEN_MAX); x>=0; x--)
    {
        close (x);
    }

    //----------------
    //Main Process
    //----------------
    while(true){
        process();    //Run our Process
        sleep(30); //Sleep for 30 seconds
        break;    
    }

    //Close the log
    closelog ();
    return 0;
}

相关内容