too many open files

too many open files

ulimit -a 

查看限制数设置

/etc/security/limits.conf

查看设置

查看是哪个占用的较多句柄

[root@ipmi112 ~]# lsof -n |awk '{print $2}'|sort|uniq -c |sort -nr|more
   7266 28483
   6820 18104
   6783 8764
   6741 30419
   6720 6659
   6636 29557
   6615 2065
   1690 5579
   1530 3126
   1449 4871
   1442 6727
   1326 8505
   1292 6410
   1292 30172
   1292 28244
   1292 1810
   1275 17864
   1236 3535
   1236 21211
   1235 8701
   1235 6603
   1235 30362
   1235 29507
   1235 28426

第一列为数量,第二列为进程号
可以使用ps -ef |grep pid 查看进程名,pwdx查看进程路径

发表评论

您的电子邮箱地址不会被公开。