1 编写守护进程基本规则
1)umake(0)将文件模式创建屏蔽字设置为0
2)fork之后,父进程exit
3)子进程调用setsid
4)更改工作目录chdir("/")
5)关闭所有打开的文件描述符
6)在/dev/null上打开文件描述符1,2,3
2 守护进程出错处理
产生日志消息的三种方式:
1)内核进程调用log函数写日志消息到/dev/klog
2)用户进程调用syslog函数写日志消息到/dev/log
3)网络主机上的进程发送日志消息UDP包到514端口
syslogd守护进程用来处理日志消息,此进程的配置文件一般为/etc/syslog.conf,该文件决定不同种类的消息应该如何处理
#include <syslog.h> void openlog(const char *ident,int option,int facility) void syslog(int priority,const char *format,...) void closelog(); int setlogmask(int maskpri)
ident一般是程序名,将被加到每条日志消息中
时间: 2024-10-10 06:27:49