我写了一个简单的测试应用程序来记录日志文件中的内容。我正在使用 linux mint 并在应用程序执行后我尝试使用此命令查看日志:
tail -n 100 /var/log/messages
但是文件消息既不存在也不存在。您可以在下面找到我的代码。也许我做错了什么,文件没有存储在那里,或者我需要启用linux mint登录。
#include <stdio.h>
#include <stdlib.h>
#include <syslog.h>
void init_log()
{
setlogmask(LOG_UPTO(LOG_NOTICE));
openlog("testd",LOG_CONS | LOG_PID | LOG_NDELAY, LOG_LOCAL1);
}
int main(void) {
init_log();
printf("Session started!");
syslog(LOG_NOTICE, "Session started!!");
closelog();
return EXIT_SUCCESS;
}
答案 0 :(得分:52)
在我的Ubuntu机器上,我可以看到/var/log/syslog
的输出。
正如其他人所说,syslog()
文件会记录您的/var/log/syslog
输出
您可以在/var/log
上查看系统,用户和其他日志。
有关详情:此处为interesting link。
答案 1 :(得分:19)
除了接受的答案外,了解以下内容也很有用......
这些功能中的每一个都应具有与之关联的手册页。
如果您运行man -k syslog
(手册页的关键字搜索),您将获得一个参考或关于 syslog
$ man -k syslog
logger (1) - a shell command interface to the syslog(3) system l...
rsyslog.conf (5) - rsyslogd(8) configuration file
rsyslogd (8) - reliable and extended syslogd
syslog (2) - read and/or clear kernel message ring buffer; set c...
syslog (3) - send messages to the system logger
vsyslog (3) - send messages to the system logger
您需要了解手册部分才能进一步深入研究。
以下是man的手册页的摘录,解释了man page部分:
The table below shows the section numbers of the manual followed by
the types of pages they contain.
1 Executable programs or shell commands
2 System calls (functions provided by the kernel)
3 Library calls (functions within program libraries)
4 Special files (usually found in /dev)
5 File formats and conventions eg /etc/passwd
6 Games
7 Miscellaneous (including macro packages and conven‐
tions), e.g. man(7), groff(7)
8 System administration commands (usually only for root)
9 Kernel routines [Non standard]
阅读以上内容
$man man
因此,如果您运行man 3 syslog
,则会获得您在代码中调用的syslog
函数的完整手册页。
SYSLOG(3) Linux Programmer's Manual SYSLOG(3)
NAME
closelog, openlog, syslog, vsyslog - send messages to the system
logger
SYNOPSIS
#include <syslog.h>
void openlog(const char *ident, int option, int facility);
void syslog(int priority, const char *format, ...);
void closelog(void);
#include <stdarg.h>
void vsyslog(int priority, const char *format, va_list ap);
不是直接答案,但希望你会发现这很有用。
答案 2 :(得分:17)
默认日志位置(rhel)是
常规消息:
/var/log/messages
身份验证消息:
/var/log/secure
邮件活动:
/var/log/maillog
检查/etc/syslog.conf
或/etc/syslog-ng.conf
(这取决于您安装的syslog工具中的哪一个)
示例:
$ cat /etc/syslog.conf
# Log anything (except mail) of level info or higher.
# Don't log private authentication messages!
*.info;mail.none;authpriv.none /var/log/messages
# The authpriv file has restricted access.
authpriv.* /var/log/secure
# Log all the mail messages in one place.
mail.* /var/log/maillog
#For a start, use this simplified approach.
*.* /var/log/messages
答案 3 :(得分:8)
您必须告诉系统要记录哪些信息以及将信息放在何处。在cat /etc/rsyslog.conf文件中配置日志记录,重启rsyslog以加载新配置。默认日志记录规则通常位于文件/etc/rsyslog.d/50-default.conf中。
答案 4 :(得分:4)
syslog()生成一条日志消息,该消息将由syslogd分发。
配置syslogd的文件是/etc/syslog.conf。 该文件将告诉您记录消息的位置。
如何更改此文件中的选项? 干得好 http://www.bo.infn.it/alice/alice-doc/mll-doc/duix/admgde/node74.html
答案 5 :(得分:4)
在Linux中,日志记录非常易于配置,您可能需要查看/etc/syslog.conf
(或可能在/etc/rsyslog.d/
下)。详细信息取决于日志记录子系统和分发。
还要查看/var/log/
下的文件(也许可以运行dmesg
来获取内核日志)。
答案 6 :(得分:0)
我在WSL(Linux的Windows子系统)下运行Ubuntu,而systemctl start rsyslog
对我不起作用。
所以我是这样做的:
$ service rsyslog start
现在syslog
文件将显示在/var/log/