C语言后台编程
Background programming in C
我正在尝试创建一个具有主配置文件的后台程序,其中包含另一个配置文件位置并执行它们中的每一个。例如:
如果 main_config.conf:
/home/conf1
/home/conf2
我想在后台执行 ./background_pro /home/conf1
和 ./background_pro /home/conf2
。我怎么做 ?我在下面使用 structure.Thank 你
#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>
int main(void) {
/* Our process ID and Session ID */
pid_t pid, sid;
/* Fork off the parent process */
pid = fork();
if (pid < 0) {
exit(EXIT_FAILURE);
}
/* If we got a good PID, then
we can exit the parent process. */
if (pid > 0) {
exit(EXIT_SUCCESS);
}
/* Change the file mode mask */
umask(0);
/* Open any logs here */
/* Create a new SID for the child process */
sid = setsid();
if (sid < 0) {
/* Log the failure */
exit(EXIT_FAILURE);
}
/* Change the current working directory */
if ((chdir("/")) < 0) {
/* Log the failure */
exit(EXIT_FAILURE);
}
/* Close out the standard file descriptors */
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
/* Daemon-specific initialization goes here */
/* The Big Loop */
while (1) {
/* Do some task here ... */
sleep(30); /* wait 30 seconds */
}
exit(EXIT_SUCCESS);
}
只需在shell命令的后面添加一个'&',然后该命令将在后台运行。
我想,这可能是你想要的:daemon.bash
#!bash
# to stop a sub process
if [ "x" = "x-stop" ]; then
if [ "x" = "xsub1" ]; then
kill `cat sub1.pid`
elif [ "x" = "xsub2" ]; then
kill `cat sub2.pid`
fi
exit
fi
# to start sub processes
conf1=`head -1 main_config.conf`
conf2=`head -2 main_config.conf | tail -1`
nohup ./background_pro $conf1 &
pid1=$!
echo "$pid1" > sub1.pid
nohup ./background_pro $conf2 &
pid2=$!
echo "$pid2" > sub2.pid
运行恶魔:
nohup ./daemon.bash &
即使您关闭终端,nohup
程序也会保持 运行ning。
停止子进程 1:
./daemon.bash -stop sub1
后台程序可能就是 linux 用户所说的 "Daemon" 程序。请在 Creating a daemon in Linux 上查看此处,您可以在其中找到有关如何开始编写自己的守护进程的大量信息。对于解析命令行参数,我建议阅读 getopt() 的 GNU c 库手册。
我正在尝试创建一个具有主配置文件的后台程序,其中包含另一个配置文件位置并执行它们中的每一个。例如: 如果 main_config.conf:
/home/conf1
/home/conf2
我想在后台执行 ./background_pro /home/conf1
和 ./background_pro /home/conf2
。我怎么做 ?我在下面使用 structure.Thank 你
#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>
int main(void) {
/* Our process ID and Session ID */
pid_t pid, sid;
/* Fork off the parent process */
pid = fork();
if (pid < 0) {
exit(EXIT_FAILURE);
}
/* If we got a good PID, then
we can exit the parent process. */
if (pid > 0) {
exit(EXIT_SUCCESS);
}
/* Change the file mode mask */
umask(0);
/* Open any logs here */
/* Create a new SID for the child process */
sid = setsid();
if (sid < 0) {
/* Log the failure */
exit(EXIT_FAILURE);
}
/* Change the current working directory */
if ((chdir("/")) < 0) {
/* Log the failure */
exit(EXIT_FAILURE);
}
/* Close out the standard file descriptors */
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
/* Daemon-specific initialization goes here */
/* The Big Loop */
while (1) {
/* Do some task here ... */
sleep(30); /* wait 30 seconds */
}
exit(EXIT_SUCCESS);
}
只需在shell命令的后面添加一个'&',然后该命令将在后台运行。 我想,这可能是你想要的:daemon.bash
#!bash
# to stop a sub process
if [ "x" = "x-stop" ]; then
if [ "x" = "xsub1" ]; then
kill `cat sub1.pid`
elif [ "x" = "xsub2" ]; then
kill `cat sub2.pid`
fi
exit
fi
# to start sub processes
conf1=`head -1 main_config.conf`
conf2=`head -2 main_config.conf | tail -1`
nohup ./background_pro $conf1 &
pid1=$!
echo "$pid1" > sub1.pid
nohup ./background_pro $conf2 &
pid2=$!
echo "$pid2" > sub2.pid
运行恶魔:
nohup ./daemon.bash &
即使您关闭终端,nohup
程序也会保持 运行ning。
停止子进程 1:
./daemon.bash -stop sub1
后台程序可能就是 linux 用户所说的 "Daemon" 程序。请在 Creating a daemon in Linux 上查看此处,您可以在其中找到有关如何开始编写自己的守护进程的大量信息。对于解析命令行参数,我建议阅读 getopt() 的 GNU c 库手册。