zoukankan      html  css  js  c++  java
  • 高并发IIS Web服务器常用设置

    支持高并发的IIS Web服务器常用设置

    适用的IIS版本:IIS 7.0, IIS 7.5, IIS 8.0

    适用的Windows版本:Windows Server 2008, Windows Server 2008 R2, Windows Server 2012

    1、应用程序池(Application Pool)的设置:在IIS应用程序池高级设置中 

    • General(常规)->Queue Length(对列长度)设置为65535(队列长度所支持的最大值)
    • Process Model(进程模型)->Idle Time-out(限制超时(分钟))设置为0(不让应用程序池因为没有请求而回收)
    • Recycling->Regular Time Interval(固定时间间隔(分钟))设置为0(禁用应用程序池定期自动回收)

    2、.Net Framework相关设置

    a) 在machine.config中将

    <processModel autoConfig="true"/>

    改为

    <processModel enable="true" requestQueueLimit="100000"/>

    (保存后该设置立即生效)

    b) 打开C:WindowsMicrosoft.NETFramework64v4.0.30319ConfigBrowsers Default.browser,找到<defaultBrowser id="Wml" parentID="Default" >,注释<capabilities>部分,然后运行在命令行中运行aspnet_regbrowsers -i。

    复制代码
    <defaultBrowser id="Wml" parentID="Default"><identification><header name="Accept" match="text/vnd.wap.wml|text/hdml"/><header name="Accept" nonMatch="application/xhtml+xml; profile|application/vnd.wap.xhtml+xml"/></identification><!--
        <capabilities>
            <capability name="preferredRenderingMime"              value="text/vnd.wap.wml" />
            <capability name="preferredRenderingType"              value="wml11" />
        </capabilities>
    --></defaultBrowser>
    复制代码

    以解决text/vnd.wap.wml问题。

    3、IIS的applicationHost.config设置

    设置命令:

    c:windowssystem32inetsrvappcmd.exe set config /section:serverRuntime /appConcurrentRequestLimit:100000

    设置结果:

    <serverRuntime appConcurrentRequestLimit="100000"/>

    (保存后该设置立即生效)

    4、http.sys的设置

    注册表设置命令1(将最大连接数设置为10万):

    reg add HKLMSystemCurrentControlSetServicesHTTPParameters /v MaxConnections /t REG_DWORD /d 100000

    注册表设置命令2(解决Bad Request - Request Too Long问题):

    reg add HKEY_LOCAL_MACHINESYSTEMCurrentControlSetservicesHTTPParameters /v MaxFieldLength /t REG_DWORD /d 32768
    reg add HKEY_LOCAL_MACHINESYSTEMCurrentControlSetservicesHTTPParameters /v MaxRequestBytes /t REG_DWORD /d 32768

    (需要在命令行运行 net stop http  & net start http & iisreset 使设置生效)

    5、针对负载均衡场景的设置

    在Url Rewrite Module中增加如下的规则:

    <rewrite><allowedServerVariables><add name="REMOTE_ADDR"/></allowedServerVariables><globalRules><rule name="HTTP_X_Forwarded_For-to-REMOTE_ADDR" enabled="true"><match url=".*"/><serverVariables><set name="REMOTE_ADDR" value="{HTTP_X_Forwarded_For}"/></serverVariables><action type="None"/><conditions><add input="{HTTP_X_Forwarded_For}" pattern="^$" negate="true"/></conditions></rule></globalRules></rewrite>

    相关博文:迁入阿里云后遇到的Request.UserHostAddress记录IP地址问题

    注意事项:添加该URL重写规则会造成IIS内核模式缓存不工作,详见微软的坑:Url重写竟然会引起IIS内核模式缓存不工作

    6、 设置Cache-Control为public

    在web.config中添加如下配置: 

    <configuration><system.webServer><staticContent><clientCache cacheControlCustom="public"/></staticContent></system.webServer></configuration>

    7、ASP.NET线程设置

    在machine.config的<processModel>中添加如下设置: 

    <processModel enable="true" maxWorkerThreads="100" maxIoThreads="100" minWorkerThreads="50" minIoThreads="50"/>
  • 相关阅读:
    [转]SVN 乱码问题
    [转]自己做 Visual Studio 2013 代码折叠插件
    [Java]一步一步学 Web
    [转]SQL Server 结构读取
    [转][c#]注册表经验集
    [转]加密经验集 => C#
    [转]Oracle 连接dll
    《高效能程序员的修炼》读书笔记
    Blend for Visual Studio 2013
    ASP.NET中服务器控件的生命周期
  • 原文地址:https://www.cnblogs.com/duojia/p/4549931.html
Copyright © 2011-2022 走看看