查看linux句柄数限制
ulimit -n
临时修改
ulimit -n 100000
永久修改
vim /etc/security/limits.conf
在# End of file前面插入
* soft nofile 1000000
* hard nofile 1000000
!!部分linux如树莓派需要指定用户
root soft nofile 1000000
root hard nofile 1000000
修改nofile全局最大值(最大值必须比limits.conf的配置大否则可能无法开机)
vim /etc/sysctl.conf
在末尾添加
fs.nr_open=1500000
fs.file-max=1500000
生效配置
sysctl -p
配置完成 重启设备
reboot
查看配置
cat /proc/sys/fs/nr_open
本文来自投稿,不代表本站立场,如若转载,请注明出处:https://blog.xiaoyuanling.com/linux/19.html
发表评论