summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/rsyslog/rsyslog/rsyslog.conf
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-06-17 17:12:49 +0200
committerKoen Kooi <koen@dominion.thruhere.net>2011-06-17 19:45:58 +0200
commitc85efd2281af4556854107768d7583a8208b6647 (patch)
treebc47cf9716483942de06cff762b7a4bc2f52207f /meta-oe/recipes-extended/rsyslog/rsyslog/rsyslog.conf
parentf9c4fd0b31a28c5a79bf00d2ac5ff5e9f872ecd2 (diff)
downloadmeta-openembedded-c85efd2281af4556854107768d7583a8208b6647.tar.gz
rsyslog: add 5.8.0
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-extended/rsyslog/rsyslog/rsyslog.conf')
-rw-r--r--meta-oe/recipes-extended/rsyslog/rsyslog/rsyslog.conf60
1 files changed, 60 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog/rsyslog.conf b/meta-oe/recipes-extended/rsyslog/rsyslog/rsyslog.conf
new file mode 100644
index 000000000..47fc4402a
--- /dev/null
+++ b/meta-oe/recipes-extended/rsyslog/rsyslog/rsyslog.conf
@@ -0,0 +1,60 @@
1# if you experience problems, check
2# http://www.rsyslog.com/troubleshoot for assistance
3
4# rsyslog v3: load input modules
5# If you do not load inputs, nothing happens!
6# You may need to set the module load path if modules are not found.
7
8$ModLoad immark # provides --MARK-- message capability
9$ModLoad imuxsock # provides support for local system logging (e.g. via logger command)
10$ModLoad imklog # kernel logging (formerly provided by rklogd)
11
12# Log all kernel messages to the console.
13# Logging much else clutters up the screen.
14#kern.* /dev/console
15
16# Log anything (except mail) of level info or higher.
17# Don't log private authentication messages!
18*.info;mail.none;authpriv.none;cron.none -/var/log/messages
19
20# The authpriv file has restricted access.
21authpriv.* /var/log/secure
22
23# Log all the mail messages in one place.
24mail.* -/var/log/maillog
25
26
27# Log cron stuff
28cron.* -/var/log/cron
29
30# Everybody gets emergency messages
31*.emerg *
32
33# Save news errors of level crit and higher in a special file.
34uucp,news.crit -/var/log/spooler
35
36# Save boot messages also to boot.log
37local7.* /var/log/boot.log
38
39# Remote Logging (we use TCP for reliable delivery)
40# An on-disk queue is created for this action. If the remote host is
41# down, messages are spooled to disk and sent when it is up again.
42#$WorkDirectory /rsyslog/spool # where to place spool files
43#$ActionQueueFileName uniqName # unique name prefix for spool files
44#$ActionQueueMaxDiskSpace 1g # 1gb space limit (use as much as possible)
45#$ActionQueueSaveOnShutdown on # save messages to disk on shutdown
46#$ActionQueueType LinkedList # run asynchronously
47#$ActionResumeRetryCount -1 # infinite retries if host is down
48# remote host is: name/ip:port, e.g. 192.168.0.1:514, port optional
49#*.* @@remote-host:514
50
51
52# ######### Receiving Messages from Remote Hosts ##########
53# TCP Syslog Server:
54# provides TCP syslog reception and GSS-API (if compiled to support it)
55#$ModLoad imtcp.so # load module
56#$InputTCPServerRun 514 # start up TCP listener at port 514
57
58# UDP Syslog Server:
59#$ModLoad imudp.so # provides UDP syslog reception
60#$UDPServerRun 514 # start a UDP syslog server at standard port 514