我有一个 .Net 项目,我想在 IIS 默认网站中使用 cmd 或 exe 更改最大并发连接数。
如何使用脚本、exe 或 cmd 命令更改它?
根据这个答案:https://stackoverflow.com/a/7898696/888617您可以编辑您的 machine.config 以设置最大连接数。
<configuration>
<system.net>
<connectionManagement>
<add address="*" maxconnection="65535"/>
</connectionManagement>
</system.net>
</configuration>
您可以通过以下方式获取配置文件:
string configPath = System.Runtime.InteropServices.RuntimeEnvironment.SystemConfigurationFile;