查看linux打开文件数
查看所有进程的文件打开数
1lsof |wc -l
查看某个进程打开的文件数
1lsof -p pid |wc -l
2ulimit -n 4096
也就是限制用户的最大文件打开数为4096个
1/proc/sys/fs/file-nr
该文件与 file-max 相关,它有三个值:
- 已分配文件句柄的数目
- 已使用文件句柄的数目
- 文件句柄的最大数目
该文件是只读的,仅用于显示信息。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/openfile/1368.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.