]> TLD Linux GIT Repositories - packages/syslog-ng.git/blobdiff - syslog-ng-simple.conf
- merged 3.14.1 from PLD
[packages/syslog-ng.git] / syslog-ng-simple.conf
index f445656280c29b22f728d669eb0faffd7d5d4ea5..48ba9211faa0bab39efc99cf41eb74e86fb6df07 100644 (file)
@@ -1,6 +1,6 @@
-@version: 3.6
+@version: 3.8
 #
-# Syslog-ng configuration for TLD Linux
+# Syslog-ng configuration for PLD Linux
 #
 # See syslog-ng(8) and syslog-ng.conf(5) for more information.
 #
@@ -23,7 +23,13 @@ options {
 
 source s_sys   {
        file ("/proc/kmsg" program_override("kernel"));
+
        unix-stream("/dev/log" max-connections(1000) log_iw_size(100000));
+# if using systemd, comment out the line above, and uncomment line below
+#      unix-dgram("/run/systemd/journal/syslog");
+# NOTE: if you are running under systemd and fixed config then you may need to manually fix /dev/log symlink:
+# ln -s /run/systemd/journal/dev-log /dev/log
+#
        internal();
 };
 
@@ -32,6 +38,7 @@ destination d_messages    { file("/var/log/messages"); };
 destination d_kern        { file("/var/log/kernel"); };
 destination d_console_all { file("/dev/tty12"); };
 
+# if using systemd, an IP address instead of name may be required here
 #destination d_loghost { udp("loghost" port(514)); };
 
 filter f_kern             { facility(kern); };