码迷,mamicode.com
首页 > 系统相关 > 详细

Linux文件句柄数配置

时间:2019-10-16 11:35:01      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:har   常用   max   proc   print   分析   limits   sof   uniq   

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文件句柄数配置

标签:har   常用   max   proc   print   分析   limits   sof   uniq   

原文地址:https://www.cnblogs.com/dushenzi/p/11684154.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!