Linux内核参数/Limits调整方法 2021-09-07 1 分钟阅读 linuxcheatsheet 配置方法 查看内核限制 1 ulimit -a 系统级调整 添加配置 1 vi /etc/sysctl.conf 生效配置 1 sysctl -p 用户级调整 修改配置 1 vi /etc/security/limits.conf 常用配置 max open files 系统级: 1 fs.file-max=500000 验证: 1 cat /proc/sys/fs/file-max 用户级: 1 2 3 4 ## Example hard limit for max opened files <domain> hard nofile 4096 ## Example soft limit for max opened files <domain> soft nofile 1024
评论