Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # /etc/rsyslog.conf Configuration file for rsyslog.
- #
- # For more information see
- # /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html
- #################
- #### MODULES ####
- #################
- $ModLoad imuxsock # provides support for local system logging
- $ModLoad imklog # provides kernel logging support (previously done by rklogd)
- #$ModLoad immark # provides --MARK-- message capability
- # provides UDP syslog reception
- $ModLoad imudp
- $UDPServerRun 514
- ###########################
- #### GLOBAL DIRECTIVES ####
- ###########################
- #
- # Use traditional timestamp format.
- # To enable high precision timestamps, comment out the following line.
- #
- $ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
- #
- # Set the default permissions for all log files.
- #
- $FileOwner root
- $FileGroup adm
- $FileCreateMode 0640
- $DirCreateMode 0755
- $Umask 0022
- #
- # Include all config files in /etc/rsyslog.d/
- #
- $IncludeConfig /etc/rsyslog.d/*.conf
- ###############
- #### RULES ####
- ###############
- #
- # First some standard log files. Log by facility.
- #
- *.* -/var/log/test/all.log
- local0.* -/var/log/test/local0.log
- mail.* -/var/log/test/mail.log
- user.* -/var/log/test/user.log
Advertisement
Add Comment
Please, Sign In to add comment