如何在ubuntu中解决这些警告?

如何在ubuntu中解决这些警告?,ubuntu,asp.net-core,aspnetboilerplate,Ubuntu,Asp.net Core,Aspnetboilerplate,我无法理解这个问题的本质。我提供我所拥有的: kestrel.service - ASP.NET Core Application running on Ubuntu Loaded: loaded (/etc/systemd/system/kestrel.service; enabled; vendor preset: enabled) Active: active (running) since Tue 2017-08-29 14:34:18 BRT; 7s ago Main P

我无法理解这个问题的本质。我提供我所拥有的:

kestrel.service - ASP.NET Core Application running on Ubuntu
   Loaded: loaded (/etc/systemd/system/kestrel.service; enabled; vendor preset: enabled)
   Active: active (running) since Tue 2017-08-29 14:34:18 BRT; 7s ago
 Main PID: 2356 (dotnet)
    Tasks: 25
   Memory: 173.9M
      CPU: 6.913s
   CGroup: /system.slice/kestrel.service
           └─2356 /usr/bin/dotnet /var/www/publish/Abp.Web.Mvc.dll

Aug 29 14:34:18 ubuntu systemd[1]: Started ASP.NET Core Application running on Ubuntu.
Aug 29 14:34:20 ubuntu dotnet-example[2356]: : Microsoft.AspNetCore.DataProtection.Repositories.EphemeralXmlRepository[50]
Aug 29 14:34:20 ubuntu dotnet-example[2356]:       Using an in-memory repository. Keys will not be persisted to storage.
Aug 29 14:34:20 ubuntu dotnet-example[2356]: warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[59]
Aug 29 14:34:20 ubuntu dotnet-example[2356]:       Neither user profile nor HKLM registry available. Using an ephemeral key repository. Protected data will b
Aug 29 14:34:20 ubuntu dotnet-example[2356]: info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[58]
Aug 29 14:34:20 ubuntu dotnet-example[2356]:       Creating key {2a2891cb-5852-4f47-9b1b-c97850fc05cc} with creation date 2017-08-29 17:34:20Z, activation da
Aug 29 14:34:20 ubuntu dotnet-example[2356]: warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
Aug 29 14:34:20 ubuntu dotnet-example[2356]:       No XML encryptor configured. Key {2a2891cb-5852-4f47-9b1b-c97850fc05cc} may be persisted to storage in une
~

非常感谢。

当内省端点收到令牌时,它必须通过尝试反序列化来确定它是访问令牌、身份令牌、授权码还是刷新令牌,这是正常的。在这种情况下,OIDC服务器中间件试图将令牌作为身份令牌读取,但未能读取(这是预期的,因为令牌可能是访问令牌)。要配置数据保护并确保在实例之间共享密钥环

有关更多信息->