The user limit for number of open files is to…

2020-04-30 16:01:28来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

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

当安装alluxio时,出现允许打开的文件数目过小问题:

The user limit for number of open files is too small. The current value is 4096. For production use, it should be bigger than 16384

解决方法:

#查看当前系统允许打开文件数目
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 # 修改立即生效;

# 修改用户限制
ulimit -Hn 16386 #临时生效;退出后失效
vi /etc/security/limits.conf,添加:
* soft nofile 16386
* hard nofile 16386 
确保 /etc/pam.d/login 文件中有:(没有则进行添加)
session required pam_limits.so
重新登录即可;使用ulimit 查看变化;

参考链接:

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


原文链接:https://www.cnblogs.com/xuyaowen/p/linux-open-limit.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:MySQL全库备份脚本

下一篇:MySQL常用管理SQL语句