当前位置: 技术问答>linux和unix
linux的日志是怎么记录的
来源: 互联网 发布时间:2016-12-07
本文导语: 1 看到/var/log下有日志 但不知道这种日志的怎么记录的,应该是自动记录的吧 通过什么模块记录的呢,具体是怎么实现的? 2 另外,我如果在linux下新做一个deamon,并且与其对应有个shell 在这个deamon中怎么记录日志...
1 看到/var/log下有日志
但不知道这种日志的怎么记录的,应该是自动记录的吧
通过什么模块记录的呢,具体是怎么实现的?
2 另外,我如果在linux下新做一个deamon,并且与其对应有个shell
在这个deamon中怎么记录日志呢
哪位大侠能详细指导下吗
谢谢了
但不知道这种日志的怎么记录的,应该是自动记录的吧
通过什么模块记录的呢,具体是怎么实现的?
2 另外,我如果在linux下新做一个deamon,并且与其对应有个shell
在这个deamon中怎么记录日志呢
哪位大侠能详细指导下吗
谢谢了
|
这个问题,我来回答一下:
在/etc/有个文件:syslog.conf
内容是:
[root@sheng etc]# more syslog.conf
# Log all kernel messages to the console.
# Logging much else clutters up the screen.
#kern.* /dev/console
# Log anything (except mail) of level info or higher.
# Don't log private authentication messages!
*.info;mail.none;authpriv.none;cron.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
# Log cron stuff
cron.* /var/log/cron
# Everybody gets emergency messages
*.emerg *
# Save news errors of level crit and higher in a special file.
uucp,news.crit /var/log/spooler
# Save boot messages also to boot.log
local7.* /var/log/boot.log
你想看启动log 可以看 boot.log
你想看message log 可以看message.log
你想看mail log 可以看mail.log
在/etc/有个文件:syslog.conf
内容是:
[root@sheng etc]# more syslog.conf
# Log all kernel messages to the console.
# Logging much else clutters up the screen.
#kern.* /dev/console
# Log anything (except mail) of level info or higher.
# Don't log private authentication messages!
*.info;mail.none;authpriv.none;cron.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
# Log cron stuff
cron.* /var/log/cron
# Everybody gets emergency messages
*.emerg *
# Save news errors of level crit and higher in a special file.
uucp,news.crit /var/log/spooler
# Save boot messages also to boot.log
local7.* /var/log/boot.log
你想看启动log 可以看 boot.log
你想看message log 可以看message.log
你想看mail log 可以看mail.log