Linux文件句柄数配置

Posted 嘟神子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux文件句柄数配置相关的知识,希望对你有一定的参考价值。

1、单程序句柄数限制

查看配置的句柄数:ulimit -n

 

cat /etc/security/limits.conf

参考配置:

* soft nofile 655360
* hard nofile 655360

 

2、全局句柄数限制

cat /proc/sys/fs/file-max

参考配置:

6815744

 

3、分析句柄数常用命令

(1)统计各进程打开句柄数:lsof -n|awk ‘{print $2}‘|sort|uniq -c|sort -nr

(2)统计各用户打开句柄数:lsof -n|awk ‘{print $4}‘|sort|uniq -c|sort -nr

(3)统计各命令打开句柄数:lsof -n|awk ‘{print $1}‘|sort|uniq -c|sort -nr

 

以上是关于Linux文件句柄数配置的主要内容,如果未能解决你的问题,请参考以下文章

Filebeat占用文件句柄

linux句柄数的问题

Linux文件句柄占用数量查看与设置

linux文件句柄数查看

linux中文件句柄数问题

系统配置命令