Guest User

Untitled

a guest
Jun 13th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. # Log all kernel messages to the console.
  2. # Logging much else clutters up the screen.
  3. #kern.* /dev/console
  4.  
  5. # Log anything (except mail) of level info or higher.
  6. # Don't log private authentication messages!
  7. #*.info;mail.none;authpriv.none;cron.none /var/log/messages
  8. *.info;mail.none;authpriv.none;cron.none;local6.none /var/log/messages
  9.  
  10. # The authpriv file has restricted access.
  11. authpriv.* /var/log/secure
  12.  
  13. # Log all the mail messages in one place.
  14. mail.* -/var/log/maillog
  15.  
  16.  
  17. # Log cron stuff
  18. cron.* /var/log/cron
  19.  
  20. # Everybody gets emergency messages
  21. *.emerg *
  22.  
  23. # Save news errors of level crit and higher in a special file.
  24. uucp,news.crit /var/log/spooler
  25.  
  26. # Save boot messages also to boot.log
  27. local7.* /var/log/boot.log
  28.  
  29. local6.* /var/log/named.log
Add Comment
Please, Sign In to add comment