只是想知道我能不能帮上忙。我只是在做我的第一个Angular项目,并遵循了一个教程。为了下载ngx-bootstrap,我不得不卸载并重新安装部分Angular,因为它不工作。现在已经成功了,但是当我运行这个程序时,我得到了以下错误。
crit: Microsoft.AspNetCore.Server.Kestrel[0]
Unable to start Kestrel.
System.IO.IOException: Failed to bind to address https://127.0.0.1:5001: address already in use.
我正在使用dotnet运行在我的解决方案中启动ASP.Net核心WebApi项目(在VS Code中),在执行命令之后,我收到以下异常:
Unhandled exception. System.Net.Sockets.SocketException (10049): The requested address is not valid in its context.
at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
我将在Azure Core1.1中实现的Web作为应用程序服务发布到.Net,但即使在浏览静态html文件时,我仍然收到下面的错误消息:
2016-11-29 16:43:05.594 +00:00 [Warning] Unable to bind to http://localhost:28243 on the IPv6 loopback interface.
System.AggregateException: One or more errors occurred. (Error -4089 EAFNOSUPPORT address family not supported) ---&g
我有一个.NET Core1.1WebApi项目,它在本地运行得很好。一旦我将它部署到Azure上的AppService,它将不会响应任何GET请求-它们都超时了。我有一个开放的ping端点,它只返回当前日期和时间,但没有响应。查看日志,我看到了以下内容:
[INF] Azure Web Sites environment detected. Using '"D:\home\ASP.NET\DataProtection-Keys"' as key repository; keys will not be encrypted at rest. (383ad3af)
我们使用运行在Windows4.5.1上的asp.net内核作为。Kestrel用作web服务器(Kestrel版本为1.1.2)。它是按照配置的。我们还使用运行在OWIN上的SignalR。
当两个事件同时发生时,问题就会发生: Windows正在停止,Krestel收到了一些新的web请求。如果满足这些条件,则Windows服务将停止响应并挂起。
Windows无法停止本地计算机上的Topshelf.Host服务。错误1061:服务此时无法接受控制消息。
混淆码:
var port = Global.Settings.Port;
var hostBuilder = new WebH
我有一个dotnet核心应用程序,需要运行在一个windows核心容器和公开443端口(https) 我将证书传递给容器,为用户路径和密码设置环境变量。应用程序能够找到de证书,但失败,出现以下错误: crit: Microsoft.AspNetCore.Server.Kestrel[0]
Unable to start Kestrel.
Internal.Cryptography.CryptoThrowHelper+WindowsCryptographicException: Object was not found. 该证书是本地主机域的seft签名证书。 我尝试
我遵循了在Nginx上发布asp.net核心项目的教程https://docs.microsoft.com/en-us/aspnet/core/publishing/linuxproduction,前面的步骤似乎都很成功,但是 systemctl start kestrel-hellomvc.service
systemctl status kestrel-hellomvc.service 我得到了 kestrel-hellomvc.service - Example .NET Web API Application running on Ubuntu
Loaded: loaded
我的for服务器,为开发目的,服务于几个网站。这些都托管在xxx.example.com/yyy.example.com下面。每个应用程序都获得自己的子域,但运行在同一台服务器上,这显然降低了成本。
试图用ASP.NET 5来完成这个任务非常困难。Kestrel似乎接管了整个套接字连接,而不是(以某种方式) IIS管理流量并将其路由到两个不同的应用程序池和网站。第二个错误如下:
Microsoft.AspNet.Server.Kestrel.Networking.UvException: Error -4090 EADDRNOTAVAIL address not available
at
我不明白为什么这个项目不开始。它的日志没有给我正常的解释。我使用asp核心和项目版本1.0.1。我安装.NET核心1.1运行时和托管捆绑包服务器,因为这个最新版本。我无法更新项目。
日志:
info: Microsoft.Extensions.DependencyInjection.DataProtectionServices[0]
User profile is available. Using 'C:\Users\Administrator\AppData\Local\ASP.NET\DataProtection-Keys' as key repo
我正在尝试以非根用户的身份在Kubernetes上运行一个ASP.Net docker容器。我有这个dockerfile: FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base
WORKDIR /app
EXPOSE 8443
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
WORKDIR /src
COPY ["MyProgram.API/MyProgram.API.csproj", "MyProgram.API/
我有一个使用dotnet core 3.1和EF core 3.1开发的Web API。我在IBM cloud中创建了一个postgreSQL Db,并且可以使用PgAdmin访问它。然而,当我尝试通过代码连接到db时,我得到了以下错误。
令牌2) at at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer.StartAsync at at Microsoft.AspNetCore.Hosting.GenericWebHostService.StartAsync(CancellationToken System.Net.Socket
我使用VisualStudio在IIS中创建了一个站点,然后将文件复制到服务器并将ASP.NET (8.5)链接到它。 我用localhost:443配置了一个绑定。 但是,当我浏览到https://localhost:443时,我得到了一个错误: An error occurred while starting the application with the following message:
.NET Core 4.6.28008.01 X64 v4.0.0.0 | Microsoft.AspNetCore.Hosting version 2.1.1-rtm-30846
我有一个执行HTTP的.NetCore C#项目。该项目是在Kubernetes建立的,我注意到下面的日志:
Heartbeat took longer than "00:00:01" at "02/22/2020 15:43:45 +00:00".
warn: Microsoft.AspNetCore.Server.Kestrel[22]
Heartbeat took longer than "00:00:01" at "02/22/2020 15:43:46 +00:00".
warn: Microsoft.Asp
我有一个在gRPC核心中实现的.Net服务器,我想与运行在.Net框架中的控制台应用程序联系。
以下是这一问题的有效解决办法:
以下.Net核心客户端工作正常:
class Program
{
static async Task Main(string[] args)
{
var input = new MyModel();
var channel = GrpcChannel.ForAddress("https://localhost:5001");
var client = new Test