Too many open files in system

linux Too many open files in system
查看最大可以打开的文件数量
[root@CCN-BJ-3-578 fs]# cat /proc/sys/fs/file-max
65536
查看各个进程打开的文件数据量
[root@CCN-BJ-3-578 home]# lsof -n |awk '{print $2 " " $3}'|sort|uniq -c |sort -nr|more

查看和修改最大值
ulimit -a
ulimit -n 2048

你可能感兴趣的:(lsof)