1 文件描述符fd最大数量
1.1 查看
ulimit -a
ulimit -n
1.2 修改
临时(重启失效)
ulimit -n number
注:普通用户下,当number>5000时,报错:ulimit: open files: cannot modify limit: Operation not permitted
。不知道为什么是5000(在一个新建的服务器下,limit.conf此时没有任何设置)
永久生效
/etc/security/limits.conf [[limits.conf]]
* soft nofile 1048576 # 1024*1024
* hard nofile 1048576
1.3 使用场景(功能)
- 解决类似
xxx: Too many open files
报错信息