180 likes | 390 Views
CIS 193A – Lesson3. Vigilance! Logging & Monitoring. Syslog Logrotate Logwatch Accounting. Focus Question. What tools does Linux provide for organizing and making useful sense of logged output?. The Syslog Utility. Daemons: syslogd and klogd Configuration: /etc/syslog.conf
E N D
CIS 193A – Lesson3 Vigilance!Logging & Monitoring Syslog Logrotate Logwatch Accounting
Focus Question What tools does Linux provide for organizing and making useful sense of logged output?
The Syslog Utility • Daemons: syslogd and klogd • Configuration: /etc/syslog.conf • Log files: /var/log/messagessecuremaillogcronspooler boot.log
Syslog Facilities Syslog categorizes messages into the following “facilities”: • authpriv - local0 • cron - local1 • daemon - local2 • ftp - local3 • kern - local4 • lpr - local5 • mail - local6 • news - local7 • syslog,user,uucp
Syslog – Levels of Logging • Syslog organizes messages within a facility according to level of importance: • emerg • alert • crit • err • warning • notice • info • debug • Logging at one of these levels, logs all messages at that level and above
Log Files • Syslog logs to files, but in UNIX, everything is a file! • Regular files in /var/log/ • Terminal screens: /dev/console • Another program: | program • A remote syslog server: @servername
The logger Command The logger command allows shell scripts to use the syslog facility:logger [-t tag] –p facility.level “message” The logger command will also read the message to log from stdin: echo “message” | logger –p facility.level Often used in service init scripts.
The logrotate Facility Customizable, pluggable log-rotating system. • Executable: /usr/sbin/logrotate activated by cron on a daily basis • Configuration: /etc/logrotate.conf and /etc/logrotate.d/*logrotate.conf contains global settings, and individual services add their settings to logrotate.d
Features of logrotate • Rotates any file through a series of predefined extensions: .1, .2, … .n • You configure the frequency. • May compress files as well. • May rotate based on size of file. • May mail you the last file of series rather than delete.
Configuration File Syntax Filename [,filename] { rotate n # n is number of copies weekly # frequency: daily, monthly compress mail email size nk postrotate command to restart logging service endscript }
The logwatch Service Customizable, pluggable log-monitoring system written in perl. Goes through your logs for a given period of time and make a report in the areas that you wish with the detail that you wish. • Executable: /usr/sbin/logwatch • Configuration: /etc/logwatch /usr/share/logwatch/default.conf/*
logwatch Features • Will analyze logfiles by service. • Supports three levels of detail. • Analyzes today’s, yesterday’s or historical data. • Mails summary of analysis to root account. • Extensible, drop-in scripts and configuration files.
Logwatch Examples Although logwatch is normally run from cron just before a logrotate is done, you can run the command from the command line: logwatch --range all –-detail high –-service sshd –-print Logwatch –-range yesterday –-detail low –-logfile secure
A Suite of Utilities • As a service: psacct • logs to /var/account/pacct • As a client: lastcomm • Other clients: • ac • sa • last, lastb
Focus Question What tools does Linux provide for organizing and making useful sense of logging output? Syslog allows you to organize log messages from different facilities according to their severity level. Logrotate prevents the log files from getting too large, and logwatch summarizes information from the logs.