您的位置:首页 > 其它

进程可创建的最大连接数

2016-03-30 10:21 204 查看
http://blog168.chinaunix.net/space.php?uid=116213&do=blog&id=328738

linux 连接数的限制 socket连接数的理论值应该和一个进程所能打开的最大文件描述符数相等
查看
ulimit -a
修改linux socket最大连接数 有两种方法: 1、ulimit -n 5000 把允许最大打开的描述符修改为5000,只对当前终端打开的应用程序有效。 2、修改/etc/security/limits.conf在该文件中添加以下两行: * soft nofile 5000 * hard nofile 20000
解释: * 表示该配置对所有用户均有效 soft 表示软连接数 hard 表示硬连接数 nofile 配置是针对描述符的

注意内核的限制 sysctl -a看看那个maxfiles之类的参数。

windows连接数的限制
Applies To: Windows Server 2003, Windows Server 2003 R2, Windows Server 2003 with SP1, Windows Server 2003 with SP2
HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
TcpNumConnections Key: Tcpip\Parameters取值类型:REG_DWORD - Number取值范围:0 - 0xfffffe缺省值:0xfffffe描述:本参数限制可以同时打开的TCP连接的数量
MaxUserPortkey: Tcpip\Parameters取值类型:REG_DWORD - Number取值范围:5000-65534 (十进制)缺省值:0x1388 (5000 十进制)描述:控制一个应用程序可以打开的最多端口数量。通常,短命的端口在1024-5000之间分配。当试图发起5000以上端口的连接,系统将出现WSAENOBUFS(10055)错误:因为队列满或者系统缺乏足够的缓冲空间

TcpNumConnections
DescriptionSpecifies the maximum number of connections that TCP can have open simultaneously.If the value of this entry is 0, then you cannot establish any connections.
Data type Range Default valueREG_DWORD0x40000–0xFFFFFE0xFFFFFE

MaxUserPort
DescriptionSpecifies the highest port number that TCP can assign when an application requests an available user port from the system. Typically, ephemeral ports (those used briefly) are allocated to port numbers 1024 through 5000.
Data type Range Default valueREG_DWORD5,000–65,534 (port number)5000
NoteWindows Server 2003 does not add this entry to the registry. You can add it by using the registry editor Regedit.exe.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: