The user limit for number of open files is too small.

Posted xuyaowen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了The user limit for number of open files is too small.相关的知识,希望对你有一定的参考价值。

允许打开的文件数目过小问题,解决:

#查看当前系统允许打开文件数目
cat /proc/sys/fs/file-max
#查看用户可以打开的文件数目
# Check Hard Limit in Linux
ulimit -Hn
# Check Soft Limits in Linux
ulimit -Sn

#修改系统
sysctl -w fs.file-max=500000 # 临时生效;
vi /etc/sysctl.conf # 永久生效
cat /proc/sys/fs/file-max 验证
sysctl -p # 修改立即生效;

# 修改用户限制
vi /etc/security/limits.conf

参考链接:

https://www.tecmint.com/increase-set-open-file-limits-in-linux/

以上是关于The user limit for number of open files is too small.的主要内容,如果未能解决你的问题,请参考以下文章