close_wait问题终于解决了。
首先我要多谢tonykorn97,他的blog:
一篇对我非常有用的文章!(我在下面引用了过来。)
from :
下面就说说我是怎么解决的吧:
[oracle9i@rhel3 oracle9i]$ /usr/sbin/lsof -i | grep 6800
oracle 22725 oracle9i 3u ipv4 18621468 tcp rhel3:6800 (listen)
oracle 22725 oracle9i 4u ipv4 18621469 tcp rhel3:6800->rhel3:2174 (close_wait)
oracle 22725 oracle9i 8u ipv4 18621568 tcp rhel3:6800->rhel3:2175 (close_wait)
oracle 22725 oracle9i 9u ipv4 18621578 tcp rhel3:6800->rhel3:2176 (close_wait)
oracle 22726 oracle9i 3u ipv4 18621468 tcp rhel3:6800 (listen)
oracle 22726 oracle9i 4u ipv4 18621469 tcp rhel3:6800->rhel3:2174 (close_wait)
oracle 22726 oracle9i 8u ipv4 18621568 tcp rhel3:6800->rhel3:2175 (close_wait)
oracle 22726 oracle9i 9u ipv4 18621578 tcp rhel3:6800->rhel3:2176 (close_wait)
[oracle9i@rhel3 oracle9i]$ kill -9 22725
# 22725, 22726就是使用该6800端口的进程号(pid)。
[oracle9i@rhel3 oracle9i]$ /usr/sbin/lsof -i | grep 6800
# 现在就没有了,真是太好了。 这个问题在这服务器上已经出现3天多了还没有下出,结果6800端口就没办法使用了。
该问题的出现原因网上到处都是,也就是socket的client端出现异常没有close就退出了。
lsof工具真的不错!!!
----------------------------------------------
lsof的功能很多,特別提醒大家, -c,-g,-p,-u,这四个参数最有用。更详细的资料请参看:man lsof。
1、查看文件系统阻塞
根据工作需要,系统管理员想卸载一个文件系统并执行umount /mountpoint,但程序报告常常显示:umount: /mountpoint: device is
busy;这是因为该文件系统上有正在打开的文件而不允许你这么做。这时,我们需要知道哪些文件、程序及用户仍在使用该系统,以便通知用
户退出该系统,可以使用lsof识别正在打开一个特定文件系统的进程,执行如下命令:
/usr/sbin/lsof /mountpoint
在这里,mountpoint就是安装位置。例如:
# /usr/sbin /lsof /home
command pid user fd type device size node name
bash12134 meng cwddir8,5 4096 32705 /home/meng
telnet 12176 meng cwddir8,5 4096 32705 /home/meng
bash19809 meng cwddir8,5 4096 32705 /home/meng
bash20276 meng cwddir8,5 4096 32705 /home/meng
su 20315 root cwddir8,5 4096 32705 /home/meng
bash20316 root cwddir8,5 4096 32705 /home/meng
csh 20374 root cwddir8,5 4096 32705 /home/meng
lsof 20396 root cwddir8,5 4096 32705 /home/meng
lsof 20397 root cwddir8,5 4096 32705 /home/meng
显然,所有使用这些被打开的文件的进程都需要在文件系统能够被卸载前被终止。管理员以root身份,kill掉占用这个文件系统的进程,
解除文件系统阻塞。
2、搜索打开的网络连接
如果想搜索ip地址为10.645.64.23的远程连接主机的所有网络连接,可以执行如下命令:
/usr/sbin/lsof –i@10.65.64.23可以打开系统中该远程知己所有打开的套接字。
# lsof -i@10.65.64.23
command pid user fd type device size/off inode name
telnetd 6605 root0u inet 0x14813f00 0t0 tcp xpp3:telnet->linuxone:33143 (established)
telnetd 6605 root1u inet 0x14813f00 0t0 tcp xpp3:telnet->linuxone:33143 (established)
telnetd 6605 root2u inet 0x14813f00 0t0 tcp xpp3:telnet->linuxone:33143 (established)
3、寻找本地断开的打开文件
用户经常遇到这种情况,当一个进程正在向一个文件写数据时,该文件的目录可能被移动。这就产生了一个非常大的问题。例如,用户可
能发现正在向/data写数据,但是却看不到文件增大,lsof这个工具可以找到这样的错误,例如:
/usr/sbin/lsof l1,通常可以看到下面的信息:
# lsof l1
command pid user fd type device size/off nlinknode name
svrmgt_mi458 root 4r vreg 8,00 0 3418 / (/dev/rz0a)
yes 677 root 1w vreg 8,0 186523648 0 92888 / (/de v/rz0a)
# lsof l1
command pid user fd type device size/off nlink node name
svrmgt_mi458 root 4r vreg 8,0 0 0 3418 / (/dev/rz0a)
yes 677 root1w vreg 8,0 2735882240 92888 / (/dev/rz0a)
我们可以用kill -9 pid命令来结束pid显示的命令排除错误,释放空间。
我们还可以用-a选项来限制lsof报告单文件系统中的链接数量。例如,为了限制到/data部分的输出,可以输入:/usr/sbin/lsof –a l1
/data
4、搜索被程序打开的所有文件及打开的文件相关联进程
如果想知道执行pid号为637的sendmail命令打开了哪些文件的话,可以执行lsof -p 637命令。输出的结果如下:
# lsof -p 637
command pid user fd type device size/off node name
sendmail 637 root cwd vdir8,6 512 470400 /usr/var/spool/mqueue
sendmail 637 root txt vreg8,6 466944 9650 /usr (/dev/rz0g)
sendmail 637 root txt vreg8,0 139264 16016 /sbin/loader
sendmail 637 root txt vreg8,0 1663104 38402 /shlib/libc.so
sendmail 637 root0r vchr2,2 0t0 9607 /dev/null
sendmail 637 root1w vchr2,2 0t0 9607 /dev/null
sendmail 637 root2w vchr2,2 0t0 9607 /dev/null
sendmail 637 root3u unix 0x0c2fc280 0t0->0x1ead2b40
sendmail 637 root4u inet 0x0c34c200 0t0tcp *:smtp (listen)
上述输出信息显示了该程序当前打开的所有文件、设备、库及套接字等。
执行下面的命令可以发现哪些进程正在使用某个特定的文件,如下所示,可以看出,只有系统记录后台进程syslogd打开messages这个文件
。
# lsof /var/adm/messages
command pid user fd type device size/off inode name
syslogd 147 root 16w vreg8,6 2653365 22501 /usr/var/adm/messages
5、其它使用命令(更详细的资料请man lsof,这部分参看了一些资料给大家总结一下)
若沒有加上任何的参数,lsof 会列出所有被程序打开的文件。
参数可以相互结合,ex: -a -b -c 等同于 -abc
-? -h 这两个参数意思相同,显示出 lsof 的使用说明。
-a 参数被视为 and (注意:-a参数一但加上 ,会影响全部的参数。)
-c c 显示出以字母 c开头进程现在打开的文件
例:显示以init进程现在打开的文件
# lsof -c init
command pid user fd type device size/off inode name
init 1 root cwd vdir 4095,365376 8192 2 /
init 1 root txt vreg 4095,365376 286720 463 /sbin/init
d s 依照文件夹s来搜寻,此参数将不会继续深入搜寻此文件夹
例:显示在/usr/users/tongxl目录下被程序正在打开的文件(如下所示)
# lsof d /usr/users/tongxl
command pid user fd type device size/off node name
ksh 26946 root cwd vdir8,6 512 51281 /usr/users/tongxl/c
a.out 26953 root cwd vdir8,6 512 51281 /usr/users/tongxl/c
d d 同上,但是会搜索目录下的目录,时间较长。(注意︰lsof以此参数进行时,须花费较多的动态记忆体。尤其在处理较大的文件夹时
,请务必审慎使用之。)
例:显示在/usr/local/文件夹下被程序正在打开的文件(如下)很明显可以看出二者的差别
# lsof d /usr/users/tongxl
command pid user fd type device size/off node name
ksh 26946 root cwd vdir8,6 512 51281 /usr/users/tongxl/c
a.out 26953 root cwd vdir8,6 512 51281 /usr/users/tongxl/c
a.out 26953 root txt vreg8,624576 51311 /usr/users/tongxl/c/a.out
-d s 此参数以file descriptor (fd)值显示结果,可以采用范围表示,如 1-3 或 3-10 但 最前面的数一定要比最后面的数小。
举例:以fd为4显示
# lsof -d 4
command pid user fd type device size/off node name
syslogd 147 root4u inet 0x1fe0b980 0t0udp *:syslog
binlogd 151 root4u inet 0x1fe0bd40 0t0udp *:*
portmap 319 root4u inet 0x1fe0b740 0t0udp *:111
mountd321 root4u vreg8,6 253 22516 /usr (/dev/rz0g)
nfsd 323 root4u inet 0x0c349e00 0t0tcp *:2049 (listen)
rpc.statd 330 root4u inet 0x1ab42000 0t0tcp xpp3:1024 (listen)
rpc.lockd 332 root4u inet 0x1fe0bbc0 0t0udp xpp3:1028
snmpd 449 root4u unix 0x1aaf6500 0t0/var/esnmp/esnmpd
svrmgt_mi 457 root4r vreg8,00 3424 / (/dev/rz0a)
os_mibs 458 root4u inet 0x1ab475c0 0t0udp *:*
cpq_mibs 460 root4u unix 0x1aaf77c0 0t0/var/esnmp/esnmp_sub460
advfsd472 root4u inet 0x0c320000 0t0tcp *:advfs (listen)
insightd 475 root4r vdir8,6 512 25610 /usr (/dev/rz0g)
inetd 506 root4u inet 0x1ab26700 0t0tcp *:ftp (listen)
lpd 567 root4ww vreg8,64 451219 /usr (/dev/rz0g)
dtlogin 605 root4w vreg8,64 344028 /usr (/dev/rz0g)
xdec 616 root4w vreg8,64 344028 /usr (/dev/rz0g)
sendmail 702 root4u inet 0x0c321900 0t0tcp *:smtp (listen)
dtlogin 891 root4w vreg8,64 344028 /usr (/dev/rz0g)
dxconsole 907 root4w vreg8,64 344028 /usr (/dev/rz0g)
dtgreet 908 root4w vreg8,64 344028 /usr (/dev/rz0g)
-g [s] 以程序的pgid (process group identification)显示,也可以采用范围(1-3)或个别(3,5)表示,若没有特别指定,则显示全部。
举例:以pgid为3显示
# lsof -g 3
command pid pgid user fd type device size/off node name
kloadsrv 33 root cwd vdir8,0 2560 2 /
kloadsrv 33 root txt vreg8,0 221184 16041 /sbin/kloadsrv
kloadsrv 33 root0r vchr0,0 0t0 9608 /dev/console
kloadsrv 33 root1w vchr0,0 0t0 9608 /dev/console
kloadsrv 33 root2w vchr0,0 0t0 9608 /dev/console
-i [i] 用以监听有关的任何符合的位址。若没有相关位置被指定,则监听全部。
语法: lsof -i[46] [protocol][@hostname|hostaddr][:service|port]
46 --> ipv4 or ipv6
protocol --> tcp or udp
hostname --> internet host name
hostaddr --> ipv4位置
service --> /etc/service中的 service name (可以不只一个)
port --> 埠号 (可以不只一个)
# lsof -i tcp@xp001
command pid user fd type device size/off node name
telnetd 26862 root0u inet 0x0c349000 0t0 tcp xpp3:telnet->xp001:3807 (established)
telnetd 26862 root1u inet 0x0c349000 0t0 tcp xpp3:telnet->xp001:3807 (established)
telnetd 26862 root2u inet 0x0c349000 0t0 tcp xpp3:telnet->xp001:3807 (established)
telnetd 26986 root0u inet 0x1ab27100 0t0 tcp xpp3:telnet->xp001:3988 (established)
telnetd 26986 root1u inet 0x1ab27100 0t0 tcp xpp3:telnet->xp001:3988 (established)
telnetd 26986 root2u inet 0x1ab27100 0t0 tcp xpp3:telnet->xp001:3988 (established)
-l此参数禁止将user id转换为登入名称。(预设显示登入名称)
# lsof -l|more
command pid user fd type device size/off node name
kernel0 0 cwd vdir8,02560 2 /
init 1 0 cwd vdir8,02560 2 /
init 1 0 txt vreg8,0 286720 16015 / (/dev/rz0a)
kloadsrv 3 0 cwd vdir8,02560 2 /
kloadsrv 3 0 txt vreg8,0 221184 16041 /sbin/kloadsrv
kloadsrv 3 0 0r vchr0,0 0t0 9608 /dev/console
kloadsrv 3 0 1w vchr0,0 0t0 9608 /dev/console
kloadsrv 3 0 2w vchr0,0 0t0 9608 /dev/console
|-l [l] 或-表示正在打开或取消显示文件连结数. 若只有单纯的 l,后面没有任何数字,则表示显示全部。若其后有加上数字,只有文
件连结数少于该数字的会被列出。
-n不将ip位址转换成hostname,预设是不加上-n参数。
举例: lsof -i tcp@xp001 -n
(您可以和上两张图比较一下,原先的hostname便回ip位置了)
# lsof -i tcp@xp001 -n
command pid user fd type device size/off node name
telnetd 26862 root0u inet 0x0c349000 0t0 tcp 10.65.69.147:telnet->10.65.69.131:3807 (established)
telnetd 26862 root1u inet 0x0c349000 0t0 tcp 10.65.69.147:telnet->10.65.69.131:3807 (established)
telnetd 26862 root2u inet 0x0c349000 0t0 tcp 10.65.69.147:telnet->10.65.69.131:3807 (established)
telnetd 26986 root0u inet 0x1ab27100 0t0 tcp 10.65.69.147:telnet->10.65.69.131:3988 (established)
telnetd 26986 root1u inet 0x1ab27100 0t0 tcp 10.65.69.147:telnet->10.65.69.131:3988 (established)
telnetd 26986 root2u inet 0x1ab27100 0t0 tcp 10.65.69.147:telnet->10.65.69.131:3988 (established)
# lsof -i tcp@xp001
command pid user fd type device size/off node name
telnetd 26862 root0u inet 0x0c349000 0t0 tcp xpp3:telnet->xp001:3807 (established)
telnetd 26862 root1u inet 0x0c349000 0t0 tcp xpp3:telnet->xp001:3807 (established)
telnetd 26862 root2u inet 0x0c349000 0t0 tcp xpp3:telnet->xp001:3807 (established)
telnetd 26986 root0u inet 0x1ab27100 0t0 tcp xpp3:telnet->xp001:3988 (established)
telnetd 26986 root1u inet 0x1ab27100 0t0 tcp xpp3:telnet->xp001:3988 (established)
telnetd 26986 root2u inet 0x1ab27100 0t0 tcp xpp3:telnet->xp001:3988 (established)
-s列出文件的大小,若该文件没有大小,则留下空白。
# lsof -s
command pid user fd type device size node name
kernel0 root cwd vdir8,0 2560 2 /
init 1 root cwd vdir8,0 2560 2 /
init 1 root txt vreg8,0 286720 16015 / (/dev/rz0a)
kloadsrv 3 root cwd vdir8,0 2560 2 /
kloadsrv 3 root txt vreg8,0 221184 16041 /sbin/kloadsrv
kloadsrv 3 root0r vchr0,09608 /dev/console
kloadsrv 3 root1w vchr0,09608 /dev/console
kloadsrv 3 root2w vchr0,09608 /dev/console
-u s 以login name(登入名称)或uid,列出所正在打开文件。
# lsof -u tongxl
command pid user fd type device size/off node name
csh 26939 tongxl cwd vdir8,6 1024 243236 /usr -- tongxl
csh 26939 tongxl txt vreg8,6 253952 12856 /usr (/dev/rz0g)
csh 26939 tongxl txt vreg8,0 139264 16016 /sbin/loader
csh 26939 tongxl txt vreg8,0 1663104 38402 /shlib/libc.so
csh 26939 tongxl0r vchr1,0 0t0 9612 /dev/tty
csh 26939 tongxl 15u vchr6,20t328 9618 /dev/pts/2
csh 26939 tongxl 16u vchr6,20t328 9618 /dev/pts/2
csh 26939 tongxl 17u vchr6,20t328 9618 /dev/pts/2
csh 26939 tongxl 18u vchr6,20t328 9618 /dev/pts/2
csh 26939 tongxl 19u vchr6,20t328 9618 /dev/pts/2
csh 26990 tongxl cwd vdir8,6 1024 243236 /usr -- tongxl
csh 26990 tongxl txt vreg8,6 253952 12856 /usr (/dev/rz0g)
csh 26990 tongxl txt vreg8,0 139264 16016 /sbin/loader
csh 26990 tongxl txt vreg8,0 1663104 38402 /shlib/libc.so
csh 26990 tongxl0r vchr1,0 0t0 9612 /dev/tty
csh 26990 tongxl 15u vchr6,1 0t147797 9616 /dev/pts/1
csh 26990 tongxl 16u vchr6,1 0t147797 9616 /dev/pts/1
csh 26990 tongxl 17u vchr6,1 0t147797 9616 /dev/pts/1
csh 26990 tongxl 18u vchr6,1 0t147797 9616 /dev/pts/1
csh 26990 tongxl 19u vchr6,1 0t147797 9616 /dev/pts/1
----------------------------------------------------------------
阅读(86695) | 评论(1) | 转发(0) |