Guest User

Untitled

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