linux 调整最大文件打开数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 调整最大文件打开数相关的知识,希望对你有一定的参考价值。
vim /etc/security/limits.conf添加以下内容
* soft nofile 65535
* hard nofile 65535
并添加开机启动
vim /etc/rc.local
ulimit -SHn 65535
附nginx进程下检查最大文件打开数脚本
#!/bin/bash
for pid in `ps aux | grep nginx | grep -v grep |awk ‘{print $2}‘`
do
cat /proc/${pid}/limits | grep ‘max open files‘
done
by:rm_rf_db
本文出自 “12175273” 博客,请务必保留此出处http://12185273.blog.51cto.com/12175273/1979442
以上是关于linux 调整最大文件打开数的主要内容,如果未能解决你的问题,请参考以下文章