too many open files
查看当前限制最大文件打开数量
cat /proc/sys/fs/file-max
查询当前系统已打开的文件数量
cat /proc/sys/fs/file-nr
查询进程最大可打开文件数量及已
cat /proc/pid/limits
查询进程已经打开文件数量
ls -l /proc/pid/fd/* | wc -l
修改进程最大打开文件数量
prlimit --pid xxx --nofile=655360:655360
修改系统最大可打开文件数量
echo 100000000 > /proc/sys/fs/file-max
Loading...