码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 设置最大链接

时间:2018-04-01 18:49:00      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:roc   file   lsof   大文件   security   col   centos6.3   最大连接数   覆盖   

最大连接数

ulimit -SHn 65535 # 最大文件句柄数,最大打开文件数(等同最大连接数)
ulimit -a # 查看

/etc/security/limits.conf # 进程最大打开文件数
# nofile 可以被理解为是文件句柄数 文件描述符 还有socket数
* soft nofile 65535
* hard nofile 65535
# 最大进程数
# ps -mp <PID> 查看某进程的线程数
* soft nproc 16384 # 不要设置太大,容易把机器拖死, lsof |wc -l 可以看到数量
* hard nproc 32768

# 如果/etc/security/limits.d/有配置文件,将会覆盖/etc/security/limits.conf里的配置
# 即/etc/security/limits.d/的配置文件里就不要有同样的参量设置
/etc/security/limits.d/90-nproc.conf # centos6.3的最大进程数文件
* soft nproc 16384 
* hard nproc 32768

 

Linux 设置最大链接

标签:roc   file   lsof   大文件   security   col   centos6.3   最大连接数   覆盖   

原文地址:https://www.cnblogs.com/sharesdk/p/8687515.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!