zoukankan      html  css  js  c++  java
  • 进程可创建的最大连接数

    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

    HKLMSYSTEMCurrentControlSetServicesTcpipParameters

    TcpNumConnections  

    Key: TcpipParameters

    取值类型:REG_DWORD - Number

    取值范围:0 - 0xfffffe

    缺省值:0xfffffe

    描述:本参数限制可以同时打开的TCP连接的数量

    MaxUserPort

    key: TcpipParameters

    取值类型:REG_DWORD - Number

    取值范围:5000-65534 (十进制)

    缺省值:0x1388 (5000 十进制)

    描述:控制一个应用程序可以打开的最多端口数量。通常,短命的端口在1024-5000之间分配。

    当试图发起5000以上端口的连接,系统将出现WSAENOBUFS(10055)错误:因为队列满或者系统

    缺乏足够的缓冲空间

    TcpNumConnections

    Description

    Specifies 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 value

    REG_DWORD

    0x40000–0xFFFFFE

    0xFFFFFE

    MaxUserPort

    Description

    Specifies 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 value

    REG_DWORD

    5,000–65,534 (port number)

    5000

    Note

    Windows Server 2003 does not add this entry to the registry. You can add it by using the registry editor Regedit.exe.

  • 相关阅读:
    c# 测试篇之Linq性能测试
    F# 笔记
    c# DataSource和BindingSource
    .net中配置的保存格式笔记
    泛型约束(转)
    c# 调用showDialog后需要Dispose
    c# 实现ComboBox自动模糊匹配
    c# 二进制或算法实现枚举的HasFlag函数
    C# WinForm自定义控件整理
    微软中文MSDN上的一些文章链接
  • 原文地址:https://www.cnblogs.com/ztguang/p/12644265.html
Copyright © 2011-2022 走看看