Linux operating system log management overview

Source: Internet
Author: User
Article Title: Linux operating system log management overview. Linux is a technology channel of the IT lab in China. Includes basic categories such as desktop applications, Linux system management, kernel research, embedded systems, and open source.

  Log Overview
 
Logs are very important for security. They record all kinds of events that occur in the system every day. You can use them to check the cause of the error or the traces left by the attacker when the system is attacked. The main functions of logs are audit and monitoring. It can also monitor the system status in real time, monitor and track intrusions, and so on.
 
In Linux, there are three major log subsystems:
 
Connection time log-the log is executed by multiple programs and written to/var/log/wtmp and/var/run/utmp, login and other programs to update the wtmp and utmp files, enables the system administrator to track who is logged on to the system at any time.
 
Process statistics-executed by the system kernel. When a process terminates, each process writes a record to the process Statistics file (pacct or acct. Process statistics are used to provide command usage statistics for basic services in the system.
 
Error Log -- executed by syslogd (8. Various system Daemon Processes, user programs, and kernels report noteworthy events to files/var/log/messages through syslog (3. In addition, many UNIX programs create logs. Servers that provide network services such as HTTP and FTP also maintain detailed logs.
 
Common log files are as follows:
 
Access-log records HTTP/web transmission
 
Acct/pacct record user commands
 
Aculog records MODEM activities
 
Btmp record failure record
 
Lastlog records the last successful logon events and the last unsuccessful logon events.
 
Messages records information from syslog (some links to the syslog file)
 
Sudolog records commands issued by using sudo
 
Sulog logs the use of the su command
 
Syslog records information from syslog (usually linked to the messages file)
 
Utmp records each user currently logged on
 
Wtmp a permanent record of the entry and exit times of a user upon each login
 
Xferlog records FTP sessions
 
Utmp, wtmp, and lastlog log files are the key for most UNIX log subsystems to be reused-keep records of user logon entry and exit. The information about the current logon user is recorded in the file utmp; the logon entry and exit records are recorded in the file wtmp; the last logon file can be viewed using the lastlog command. Data exchange, shutdown, and restart are also recorded in the wtmp file. All records contain timestamps. These files (lastlog is usually not large) grow rapidly in systems with a large number of users. For example, the wtmp file can grow infinitely unless it is intercepted regularly. Many systems configure wtmp to be used cyclically in units of one day or one week. It is usually modified by the script run by cron. These scripts are renamed and the wtmp file is recycled. Generally, wtmp is named wtmp.1 after the first day, wtmp.1 is changed to wtmp.2 after the second day, and so on until wtmp.7.
 
Each time a user logs on, the login program checks the uid in the lastlog file. if the logon time is found, the user's Last Logon Time, exit time, and host name are written to the standard output, and the login program records the new Logon Time in lastlog. After a new lastlog is written, the utmp file is opened and the user's utmp record is inserted. This record is always used when a user logs on and exits. The utmp file is used by various command files, including who, w, users, and finger.
 
Next, the login program opens the file wtmp and appends the user's utmp record. When a user logs on and exits, the same utmp record with the updated timestamp is appended to the file. The wtmp file is used by the program last and ac.
 
  Specific commands
 
Wtmp and utmp files are binary files, and they cannot be cut or merged by tail commands (using cat commands ). You need to use the information contained in the two files by who, w, users, last, and ac.
 
Who: The who command queries the utmp file and reports to each user currently logged on. The default output of Who includes the user name, terminal type, logon date, and remote host. Example: who (Press ENTER) display
 
Chyang pts/0 Aug 18 :06
 
Ynguo pts/2 Aug 18 :32
 
Ynguo pts/3 Aug 18 :55
 
Lewis pts/4 Aug 18 :35
 
Ynguo pts/7 Aug 18
 
Ylou pts/8 Aug 18
 
If the wtmp file name is specified, the who command queries all previous records. The command who/var/log/wtmp will report every login since the wtmp file was created or deleted.
 
The w: w command queries the utmp file and displays information about each user in the current system and the processes it runs. Example: w (Press ENTER): 3: 36pm up 1 day, 6 users, load average: 0.23, 0.29, 0.27.
 
User ttyfrom login @ IDLE JCPU PCPUWHAT
 
Chyang pts/0 202.38.68.2423: 06 pm 0.08 s 0.04 s-bash
 
Ynguo pts/2 202.38.79.47 pm 0.00 s 0.14 s 0.05 w
 
Lewis pts/3 202.38.64.2331: 55pm 30: 39 0.27 s 0.22 s-bash
 
Lewis pts/4 202.38.64.2331: 35pm 6.00 s 4.03 s sh/home/users/
 
Ynguo pts/7 simba. nic. ustc. e pm 0.00 s 0.47 s 0.24 s telnet mail
 
Yloupts/8 202.38.64.2352: 15 pm 1: 09 m 0.10 s 0.04s-bash
 
Users: users prints the current logon user with a single line. Each displayed user name corresponds to a logon session. If a user has more than one login session, the user name will display the same number of times. Example: users (Press ENTER): chyang lewis ylou ynguo
 
Last: The last command searches back for wtmp to display the users that have logged on since the first file creation. For example:
 
Chyang pts/9202.38.68.242 Tue Aug 1)
 
Cfanpts/6202.38.64.20.tue Aug 1)
 
Chyang pts/4202.38.68.242 Tue Aug 1)
 
Lewis pts/3202.38.64.233 Tue Aug 1)
 
Lewis pts/2202.38.64.233 Tue Aug 1)
 
If the user is specified, only recent activities of the user are reported last time. For example, the last ynguo (Press ENTER) display:
 
Ynguopts/4 simba. nic. ustc. e Fri Aug 4)
 
Ynguopts/4 simba. nic. ustc. e Thu Aug 3)
 
Ynguopts/11 simba. nic. ustc. e Thu Aug 3)
 
Ynguopts/0 simba. nic. ustc. e Thu Aug 3)
 
Ynguopts/0 simba. nic. ustc. e Wed Aug 2 0:04-0:16 1 + 02: 12)
 
Ynguopts/0 simba. nic. ustc. e Wed Aug 2)
 
Ynguopts/9 simba. nic. ustc. e Thu Aug 1)
 
Ac: the ac Command reports the user connection time (hours) based on the logon entry and exit times in the current/var/log/wtmp file. If no signs are used, the total time is reported. Example: ac (Press ENTER): total 5177.47
 
Ac-d (Press ENTER) to display the total connection time of each day
 
Aug 12 all 261.87
 
Aug 13 total 351.39
 
Aug 14 Overall 396.09
 
Aug 15 total 462.63
 
Aug 16 total 270.45
 
Aug 17 total 104.29
 
Today total 179.02
 
Ac-p (Press ENTER) to display the total connection time of each user
 
Ynguo 193.23
 
Yucao 3.35
 
Rong 1, 133.40
 
Hdai 1, 10.52
 
Zjzhu 52.87
 
Zqzhou 13.14
 
Liangliu 24.34
 
Total 5178.24
 
Lastlog: The lastlog file is queried every time a user logs on. You can use the lastlog command to check the last logon time of a specific user and format and output the last logon log/var/log/lastlog. It displays the logon name, port number (tty), and last logon time according to the UID sorting. If a user has Never logged on, lastlog displays "** Never logged **. Note that you need to run this command as root, for example:
 
Rong5 202.38.64.187 Fri Aug 18 15:57:01 + 0800 2000
 
Dbb ** Never logged in **
 
Xinchen ** Never logged in **
 
Pb9511 ** Never logged in **
 
Xchen 0 202.38.64.190 Sun Aug 13 10:01:22 + 0800 2000
 
In addition, you can add one parameter. For example, last-u 102 will report users whose UID is 102; last-t 7 indicates limiting the report of the previous week.

[1] [2] Next page

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.