首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 操作系统 >

ulimit -SHn 65535 含意

2012-07-03 
ulimit -SHn 65535 含义ulimit -SHn 65535 含义linux下用ulimit设置连接数最大值,默认是1024.在高负载下要

ulimit -SHn 65535 含义
ulimit -SHn 65535 含义

linux下用ulimit设置连接数最大值,默认是1024.
在高负载下要设置为更高,但最高只能为65535.

ulimit只能做临时修改,重启后失效。
可以加入
ulimit -SHn 65535
到 /etc/rc.local 每次启动启用。

终极解除 Linux 系统的最大进程数和最大文件打开数限制:
vim /etc/security/limits.conf
# 添加如下的行
* soft nproc 11000
* hard nproc 11000
* soft nofile 655350
* hard nofile 655350

热点排行