# if you experience problems, check # http://www.rsyslog.com/troubleshoot for assistance # rsyslog v3: load input modules # If you do not load inputs, nothing happens! # You may need to set the module load path if modules are not found. $ModLoad immark # provides --MARK-- message capability $ModLoad imuxsock # provides support for local system logging (e.g. via logger command) $ModLoad imklog # kernel logging (formerly provided by rklogd) # 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/syslog *.info;mail.none;authpriv.none;cron.none /dev/tty10 # The authpriv file has restricted access. authpriv.* /var/log/auth.log # Log all the mail messages in one place. mail.* -/var/log/mail.log # Log cron stuff cron.* -/var/log/cron.log # Everybody gets emergency messages *.emerg * # Save warnings and errors in special files. *.warning -/var/log/warning.log *.err -/var/log/err.log