博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
limits.conf文件修改注意事项,限制文件描述符数和进程数
阅读量:5217 次
发布时间:2019-06-14

本文共 510 字,大约阅读时间需要 1 分钟。

参考文章:

https://blog.csdn.net/fanren224/article/details/79971359

https://www.cnblogs.com/micmouse521/p/8116329.html

那么如何配置nofile,确定nofile的最大值呢。

个人经验是使用ulimt -n命令进行测试,如果小于系统允许的最大值,设置成功,大于最大值,系统会报错提示。

1
2
3
4
5
6
7
# ulimit -n 1100000
-
bash
ulimit
open 
files: cannot modify limit: Operation not permitted
# ulimit -n 1048576
# ulimit -n 1048577
-
bash
ulimit
open 
files: cannot modify limit: Operation not permitted
# ulimit -n 1048575
# ulimit -n 1048576

转载于:https://www.cnblogs.com/itfat/p/10910952.html

你可能感兴趣的文章
一生必看的100本书
查看>>
插入排序和选择排序
查看>>
JS 拖动事件
查看>>
VMware设置NAT网络及 CentOS 7IP配置
查看>>
MYSQL数据库入门
查看>>
一. Spring框架防XXS跨站攻击
查看>>
love2d游戏2--1942game(二)
查看>>
java面试(1)
查看>>
小程序识别用户手机系统选择支付方式
查看>>
微信小程序如何像webview一样加载html5网页
查看>>
hdu 2609 How many(最小表示法)
查看>>
Kali Linux Web 渗透测试视频教程— 第七课 OpenVas
查看>>
wIN 7 一键清理垃圾
查看>>
《Troubleshooting SQL Server》读书笔记-性能故障诊断方法论
查看>>
网络游戏_数据库查询
查看>>
Eclipse配置Maven
查看>>
RARP的工作原理
查看>>
单点登录SSO
查看>>
页面信息传递
查看>>
算法分析——运行时间计算(一般法则)
查看>>