码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-04-30 17:24:19      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:open   生效   set   file   链接   href   打开   inux   参考   

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

#查看当前系统允许打开文件数目
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.

标签:open   生效   set   file   链接   href   打开   inux   参考   

原文地址:https://www.cnblogs.com/xuyaowen/p/linux-open-limit.html

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