lsof(list open files)是一个列出当前系统打开文件的工具。在 linux 环境下,任何事物都以文件的形式存在,通过文件不仅仅可以访问常规数据,还可以访问网络连接和硬件。所以如传输控制协议 (TCP) 和用户数据报协议 (UDP) 套接字等,系统在后台都为该应用程序分配了一个文件描述符,无论这个文件的本质如何,该文件描述符为应用程序与基础操作系统之间的交互提供了通用接口。因为应用程序打开文件的描述符列表提供了大量关于这个应用程序本身的信息,因此通过 lsof 工具能够查看这个列表对系统监测以及排错将是很有帮助的。
命令格式 - lsof [参数] [文件]
命令功能 -
用于查看你进程打开的文件,打开文件的进程,进程打开的端口(TCP、UDP)。找回/恢复删除的文件、是十分方便的系统监视工具,因为 lsof 需要访问核心内存和系统文件,因此需要 root 用户执行。
lsof 打开的文件可以是:
命令参数 -
命令实例 -
实例一:无任何参数
命令
xxxxxxxxxx
11lsof
输出
xxxxxxxxxx
261COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
2init 1 root cwd DIR 8,2 4096 2 /
3init 1 root rtd DIR 8,2 4096 2 /
4init 1 root txt REG 8,2 43496 6121706 /sbin/init
5init 1 root mem REG 8,2 143600 7823908 /lib64/ld-2.5.so
6init 1 root mem REG 8,2 1722304 7823915 /lib64/libc-2.5.so
7init 1 root mem REG 8,2 23360 7823919 /lib64/libdl-2.5.so
8init 1 root mem REG 8,2 95464 7824116 /lib64/libselinux.so.1
9init 1 root mem REG 8,2 247496 7823947 /lib64/libsepol.so.1
10init 1 root 10u FIFO 0,17 1233 /dev/initctl
11migration 2 root cwd DIR 8,2 4096 2 /
12migration 2 root rtd DIR 8,2 4096 2 /
13migration 2 root txt unknown /proc/2/exe
14ksoftirqd 3 root cwd DIR 8,2 4096 2 /
15ksoftirqd 3 root rtd DIR 8,2 4096 2 /
16ksoftirqd 3 root txt unknown /proc/3/exe
17migration 4 root cwd DIR 8,2 4096 2 /
18migration 4 root rtd DIR 8,2 4096 2 /
19migration 4 root txt unknown /proc/4/exe
20ksoftirqd 5 root cwd DIR 8,2 4096 2 /
21ksoftirqd 5 root rtd DIR 8,2 4096 2 /
22ksoftirqd 5 root txt unknown /proc/5/exe
23events/0 6 root cwd DIR 8,2 4096 2 /
24events/0 6 root rtd DIR 8,2 4096 2 /
25events/0 6 root txt unknown /proc/6/exe
26events/1 7 root cwd DIR 8,2 4096 2 /
说明
lsof 输出各列信息的意义如下:
COMMAND:进程的名称
PID:进程标识符
PPID:父进程标识符(需要指定-R参数)
USER:进程所有者
PGID:进程所属组
FD:文件描述符,应用程序通过文件描述符识别该文件。如cwd、txt等
(1)cwd:表示current work dirctory,即:应用程序的当前工作目录,这是该应用程序启动的目录,除非它本身对这个目录进行更改
(2)txt :该类型的文件是程序代码,如应用程序二进制文件本身或共享库,如上列表中显示的 /sbin/init 程序
(3)lnn:library references (AIX);
(4)er:FD information error (see NAME column);
(5)jld:jail directory (FreeBSD);
(6)ltx:shared library text (code and data);
(7)mxx :hex memory-mapped type number xx.
(8)m86:DOS Merge mapped file;
(9)mem:memory-mapped file;
(10)mmap:memory-mapped device;
(11)pd:parent directory;
(12)rtd:root directory;
(13)tr:kernel trace file (OpenBSD);
(14)v86 VP/ix mapped file;
(15)0:表示标准输出
(16)1:表示标准输入
(17)2:表示标准错误
一般在标准输出、标准错误、标准输入后还跟着文件状态模式:r、w、u等
(1)u:表示该文件被打开并处于读取/写入模式
(2)r:表示该文件被打开并处于只读模式
(3)w:表示该文件被打开并处于
(4)空格:表示该文件的状态模式为unknow,且没有锁定
(5)-:表示该文件的状态模式为unknow,且被锁定
同时在文件状态模式后面,还跟着相关的锁
(1)N:for a Solaris NFS lock of unknown type;
(2)r:for read lock on part of the file;
(3)R:for a read lock on the entire file;
(4)w:for a write lock on part of the file;(文件的部分写锁)
(5)W:for a write lock on the entire file;(整个文件的写锁)
(6)u:for a read and write lock of any length;
(7)U:for a lock of unknown type;
(8)x:for an SCO OpenServer Xenix lock on part of the file;
(9)X:for an SCO OpenServer Xenix lock on the entire file;
(10)space:if there is no lock.
TYPE:文件类型,如DIR、REG等,常见的文件类型
(1)DIR:表示目录
(2)CHR:表示字符类型
(3)BLK:块设备类型
(4)UNIX: UNIX 域套接字
(5)FIFO:先进先出 (FIFO) 队列
(6)IPv4:网际协议 (IP) 套接字
DEVICE:指定磁盘的名称
SIZE:文件的大小
NODE:索引节点(文件在磁盘上的标识)
NAME:打开文件的确切名称
实例二:查看谁正在使用某个文件,也就是说查找某个文件相关的进程
命令
xxxxxxxxxx
11lsof /bin/bash
输出
xxxxxxxxxx
61[root@localhost ~]# lsof /bin/bash
2COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
3bash 24159 root txt REG 8,2 801528 5368780 /bin/bash
4bash 24909 root txt REG 8,2 801528 5368780 /bin/bash
5bash 24941 root txt REG 8,2 801528 5368780 /bin/bash
6[root@localhost ~]#
说明
实例三:递归查看某个目录的文件信息
命令
xxxxxxxxxx
11lsof test/test3
输出
xxxxxxxxxx
61[root@localhost ~]# cd /opt/soft/
2[root@localhost soft]# lsof test/test3
3COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
4bash 24941 root cwd DIR 8,2 4096 2258872 test/test3
5vi 24976 root cwd DIR 8,2 4096 2258872 test/test3
6[root@localhost soft]#
说明
使用了 +D ,对应目录下的所有子目录和文件都会被列出
实例四:不使用 +D 选项,遍历查看某个目录的所有文件信息的方法
命令
xxxxxxxxxx
11lsof |grep 'test/test3'
输出
xxxxxxxxxx
51[root@localhost soft]# lsof |grep 'test/test3'
2bash 24941 root cwd DIR 8,2 4096 2258872 /opt/soft/test/test3
3vi 24976 root cwd DIR 8,2 4096 2258872 /opt/soft/test/test3
4vi 24976 root 4u REG 8,2 12288 2258882 /opt/soft/test/test3/.log2013.log.swp
5[root@localhost soft]#
说明
实例五:列出某个用户打开的文件信息
命令
xxxxxxxxxx
11lsof -u username
说明
-u 选项,u 其实是 user 的缩写
实例六:列出某个程序进程所打开的文件信息
命令
xxxxxxxxxx
11lsof -c mysql
说明
-c 选项将会列出所有以 mysql 这个进程开头的程序的文件,其实你也可以写成 lsof | grep mysql, 但是第一种方法明显比第二种方法要少打几个字符了
实例七:列出多个进程多个打开的文件信息
命令
xxxxxxxxxx
11lsof -c mysql| -c apache
说明
实例八:列出某个用户以及某个进程所打开的文件信息
命令
xxxxxxxxxx
11lsof -u test -c mysql
说明
用户与进程可相关,也可不相关
实例九:列出除某个用户外的被打开的文件信息
命令
xxxxxxxxxx
11lsof -u ^root
说明
^这个符号在用户名之前,将会把是 root 用户打开的进程不让显示
实例十:通过某个进程号显示该进程打开的文件
命令
xxxxxxxxxx
11lsof -p 1
实例十一:列出对个进程号对应的文件
命令
xxxxxxxxxx
11lsof -p 1,2,3
实例十二:列出除了某个进程号,其他进程号所打开的文件信息
命令
xxxxxxxxxx
11lsof -p ^1
实例十三:列出所有网络链接
命令
xxxxxxxxxx
11lsof -i
实例十四:列出所有 tcp 网络链接信息
命令
xxxxxxxxxx
11lsof -i tcp
实例十五:列出所有 udp 网络链接信息
命令
xxxxxxxxxx
11lsof -i udp
实例十六:列出谁在使用某个端口
命令
xxxxxxxxxx
11lsof -i:3306
实例十七:列出谁在使用某个特定的 udp 端口
命令
xxxxxxxxxx
11lsof -i udp:55
或者:特定的 tcp 端口
命令
xxxxxxxxxx
11lsof -i tcp:80
实例十八:列出某个用户的所有活跃的网络端口
命令
xxxxxxxxxx
11lsof -a -u test -i
实例十九:列出所有网络文件系统
命令
xxxxxxxxxx
11lsof -N
实例二十:域名 socket 文件
命令
xxxxxxxxxx
11lsof -u
实例二十一:某个用户组所打开的文件信息
命令
xxxxxxxxxx
11lsof -g 5555
实例二十二:根据文件描述列出对应的文件信息
命令
xxxxxxxxxx
41lsof 0d description(like 2)
2例如: lsof -d txt
3例如: lsof -d 1
4例如: lsof -d 2
说明
0表示标准输入,1表示标准输出,2表示标准错误,从而可知:所以大多数应用程序所打开的文件的 FD 都是从 3 开始
实例二十三:根据文件描述范围列出文件信息
命令
xxxxxxxxxx
11lsof -d 2-3
实例二十四:列出 COMMAND 列中包含字符串 "sshd" ,且文件描述符为 txt 的文件信息
命令
xxxxxxxxxx
11lsof -c sshd -a -d txt
输出
xxxxxxxxxx
81[root@localhost soft]# lsof -c sshd -a -d txt
2COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
3sshd 2756 root txt REG 8,2 409488 1027867 /usr/sbin/sshd
4sshd 24155 root txt REG 8,2 409488 1027867 /usr/sbin/sshd
5sshd 24905 root txt REG 8,2 409488 1027867 /usr/sbin/sshd
6sshd 24937 root txt REG 8,2 409488 1027867 /usr/sbin/sshd
7[root@localhost soft]#
8[root@localhost soft]#
实例二十五:列出被进程号为1234的进程所打开的所有 IPV4 network files
命令
xxxxxxxxxx
11lsof -i 4 -a -p 1234
实例二十六:列出目前连接主机 peida.linux 上端口为:20,21,22,25,53,80 相关的所有文件信息,且每隔3s不断的执行 lsof 指令
命令
xxxxxxxxxx
11lsof -i @peida.linux:20,21,22,25,53,80 -r 3