剑轩

.net core设置启动端口

电脑版发表于:2020/10/11 17:20

可以使用命令的时候修改启动端口很方便

  1. dotnet run --urls="http://*:5006"


配置UseKestrel:

贴下代码方便复制:
webBuilder.UseUrls("http://*:9003");


也可以一次性设置多个地址同时支持http与https


在appsettings.json中配置Kestrel
代码如下,看Kestrel的配置
{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "AllowedHosts": "*",
  "Kestrel": {
    "Limits": {
        "MaxConcurrentConnections": 100,
        "MaxConcurrentUpgradedConnections": 100
    },
    "DisableStringReuse": true,
    "EndPoints": {
        "Http": {
            "Url": "http://*:8805" // 端口自己改吧
        }
    }
  }
}


还可以在launchSettings.json

注意:6000这个端口设置后浏览不起估计是被其他程序占用了

iisSettings对应着iis express的启动方式,另外一个正好对应着项目命子(我这个是后加的所以没有对应上而已)




关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢