- ABP Framework version: v5.1.4
- UI type: Blazor
- DB provider: EF Core
How to Implement multitenancy on microservice demo. I'm determine current tenant by user. I followed indications of documentation https://docs.abp.io/en/abp/latest/Multi-Tenancy After trying to log in, I receive a message of invalid credentials. Can you give me some suggestions?
I have following code in the projects AuthServer and Blazor:
Configure<AbpTenantResolveOptions>(options =>
{
options.TenantResolvers.Add(new CurrentUserTenantResolveContributor());
});
18 Answer(s)
-
0
Hi,
You don't need to add it manually, it is already pre-added.
Can you share the full error logs? thanks.
-
0
2023-04-26 15:30:51.182 +01:00 [INF] Starting NB.Microservices.AuthServer. 2023-04-26 15:31:05.944 +01:00 [INF] Loaded ABP modules: 2023-04-26 15:31:05.946 +01:00 [INF] - NB.Microservices.AuthServer.MicroservicesAuthServerModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Security.AbpSecurityModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Caching.AbpCachingModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Threading.AbpThreadingModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Data.AbpDataModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Json.AbpJsonModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Timing.AbpTimingModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Settings.AbpSettingsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton.AbpAspNetCoreMvcUiLeptonThemeModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Http.AbpHttpModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Minify.AbpMinifyModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Validation.AbpValidationModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.UI.AbpUiModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Guids.AbpGuidsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Features.AbpFeaturesModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Commercial.AbpAspNetCoreMvcUiThemeCommercialModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.LeptonTheme.Management.LeptonThemeManagementDomainSharedModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Account.Web.AbpAccountPublicWebIdentityServerModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Account.Public.Web.AbpAccountPublicWebModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Account.AbpAccountPublicApplicationContractsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Account.AbpAccountSharedApplicationContractsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Identity.AbpIdentityProDomainSharedModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Sms.AbpSmsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Identity.AbpIdentityProDomainModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Ldap.AbpLdapModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Gdpr.AbpGdprAbstractionsModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Account.AbpAccountPublicApplicationModule 2023-04-26 15:31:05.946 +01:00 [INF] - Volo.Abp.Account.AbpAccountSharedApplicationModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.BlobStoring.AbpBlobStoringModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.Account.AbpAccountPublicHttpApiModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.AdministrationService.EntityFrameworkCore.AdministrationServiceEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.AdministrationService.AdministrationServiceDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.AdministrationService.AdministrationServiceDomainSharedModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.LanguageManagement.LanguageManagementDomainSharedModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.TextTemplateManagement.TextTemplateManagementDomainSharedModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.LeptonTheme.Management.LeptonThemeManagementDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.LanguageManagement.LanguageManagementDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.TextTemplateManagement.TextTemplateManagementDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.BlobStoring.Database.EntityFrameworkCore.BlobStoringDatabaseEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.BlobStoring.Database.BlobStoringDatabaseDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.BlobStoring.Database.BlobStoringDatabaseDomainSharedModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.LanguageManagement.EntityFrameworkCore.LanguageManagementEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.TextTemplateManagement.EntityFrameworkCore.TextTemplateManagementEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.IdentityService.EntityFramework.IdentityServiceEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.IdentityService.IdentityServiceDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.IdentityService.IdentityServiceDomainSharedModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityProEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.SaasService.EntityFramework.SaasServiceEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.SaasService.SaasServiceDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.SaasService.SaasServiceDomainSharedModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Saas.SaasDomainSharedModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Payment.AbpPaymentDomainSharedModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Saas.SaasDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Payment.AbpPaymentDomainModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Saas.EntityFrameworkCore.SaasEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Payment.EntityFrameworkCore.AbpPaymentEntityFrameworkCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.Shared.Hosting.AspNetCore.MicroservicesSharedHostingAspNetCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.Shared.Hosting.MicroservicesSharedHostingModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule 2023-04-26 15:31:05.947 +01:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule 2023-04-26 15:31:05.947 +01:00 [INF] - NB.Microservices.MicroservicesSharedLocalizationModule 2023-04-26 15:31:06.064 +01:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker 2023-04-26 15:31:06.658 +01:00 [INF] Starting IdentityServer4 version 4.1.2+997a6cdd643e46cd5762b710c4ddc43574cbec2e 2023-04-26 15:31:07.392 +01:00 [INF] Using the default authentication scheme Identity.Application for IdentityServer 2023-04-26 15:31:07.392 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for authentication 2023-04-26 15:31:07.392 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-in 2023-04-26 15:31:07.392 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-out 2023-04-26 15:31:07.392 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for challenge 2023-04-26 15:31:07.392 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for forbid 2023-04-26 15:31:07.957 +01:00 [INF] Initialized all ABP modules. 2023-04-26 15:31:08.090 +01:00 [INF] Now listening on: https://localhost:44322 2023-04-26 15:31:08.090 +01:00 [INF] Application started. Press Ctrl+C to shut down. 2023-04-26 15:31:08.090 +01:00 [INF] Hosting environment: Development 2023-04-26 15:31:08.090 +01:00 [INF] Content root path: C:\Users\WildervanaMendes\source\repos\NB.Microservices\apps\auth-server\src\NB.Microservices.AuthServer\
-
0
2023-04-26 15:31:17.624 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:31:19.265 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:31:19.340 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:31:19.447 +01:00 [DBG] Login Url: /Account/Login 2023-04-26 15:31:19.447 +01:00 [DBG] Login Return Url Parameter: ReturnUrl 2023-04-26 15:31:19.447 +01:00 [DBG] Logout Url: /Account/Logout 2023-04-26 15:31:19.447 +01:00 [DBG] ConsentUrl Url: /Consent 2023-04-26 15:31:19.447 +01:00 [DBG] Consent Return Url Parameter: returnUrl 2023-04-26 15:31:19.447 +01:00 [DBG] Error Url: /Account/Error 2023-04-26 15:31:19.447 +01:00 [DBG] Error Id Parameter: errorId 2023-04-26 15:31:19.514 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:31:19.547 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:31:19.557 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 1933.5294ms 2023-04-26 15:31:32.552 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:31:32.556 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:31:32.560 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:31:32.561 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 9.0448ms 2023-04-26 15:31:47.547 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:31:47.552 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:31:47.556 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:31:47.557 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 9.4614ms 2023-04-26 15:32:02.548 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:32:02.558 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:32:02.565 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:32:02.566 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 17.5379ms 2023-04-26 15:32:17.545 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:32:17.547 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:32:17.550 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:32:17.551 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 5.7396ms 2023-04-26 15:32:32.549 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:32:32.552 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:32:32.555 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:32:32.556 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 6.9296ms 2023-04-26 15:32:47.548 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:32:47.554 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:32:47.561 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:32:47.561 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 13.8211ms 2023-04-26 15:33:02.547 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:33:02.552 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:33:02.555 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:33:02.555 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 8.3799ms 2023-04-26 15:33:17.545 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:33:17.549 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:33:17.552 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:33:17.552 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 7.1231ms 2023-04-26 15:33:32.547 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:33:32.552 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:33:32.556 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:33:32.556 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 8.7057ms 2023-04-26 15:33:47.546 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:33:47.550 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:33:47.553 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:33:47.553 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 7.2563ms 2023-04-26 15:34:02.549 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:34:02.556 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:34:02.559 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:34:02.559 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 10.5381ms 2023-04-26 15:34:05.512 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/ - - 2023-04-26 15:34:09.491 +01:00 [INF] Executing endpoint '/Index' 2023-04-26 15:34:09.504 +01:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing page /Index 2023-04-26 15:34:09.505 +01:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2023-04-26 15:34:09.522 +01:00 [INF] Executing handler method NB.Microservices.AuthServer.Pages.IndexModel.OnGet - ModelState is "Valid"
-
0
2023-04-26 15:34:09.522 +01:00 [INF] Executed handler method OnGet, returned result Microsoft.AspNetCore.Mvc.RedirectResult. 2023-04-26 15:34:09.525 +01:00 [INF] Executing RedirectResult, redirecting to /Account/Login. 2023-04-26 15:34:09.528 +01:00 [INF] Executed page /Index in 20.992ms 2023-04-26 15:34:09.528 +01:00 [INF] Executed endpoint '/Index' 2023-04-26 15:34:09.531 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/ - - - 302 0 - 4018.3137ms 2023-04-26 15:34:09.536 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Account/Login - - 2023-04-26 15:34:09.542 +01:00 [INF] Executing endpoint '/Account/Login' 2023-04-26 15:34:09.557 +01:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing page /Account/Login 2023-04-26 15:34:09.557 +01:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2023-04-26 15:34:09.898 +01:00 [INF] Executing handler method Volo.Abp.Account.Public.Web.Pages.Account.LoginModel.OnGetAsync - ModelState is "Valid" 2023-04-26 15:34:09.987 +01:00 [INF] Executed handler method OnGetAsync, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. 2023-04-26 15:34:09.992 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-26 15:34:10.279 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 17.52 ms. 2023-04-26 15:34:10.326 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 9.51 ms. 2023-04-26 15:34:10.334 +01:00 [INF] Executed page /Account/Login in 777.0254ms 2023-04-26 15:34:10.334 +01:00 [INF] Executed endpoint '/Account/Login' 2023-04-26 15:34:10.353 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:34:10.361 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - 2023-04-26 15:34:10.364 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-26 15:34:10.367 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - 2023-04-26 15:34:10.367 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:34:10.374 +01:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult] Get() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-26 15:34:10.375 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-26 15:34:10.378 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Account/Login - - - 200 - text/html;+charset=utf-8 841.9411ms 2023-04-26 15:34:10.382 +01:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult GetAll(Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel) on controller Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-26 15:34:10.389 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-26 15:34:10.392 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-26 15:34:10.392 +01:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... 2023-04-26 15:34:10.438 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.RegisterAsyncByInput 2023-04-26 15:34:10.444 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.SendPasswordResetCodeAsyncByInput 2023-04-26 15:34:10.444 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.ResetPasswordAsyncByInput 2023-04-26 15:34:10.444 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.GetConfirmationStateAsyncById 2023-04-26 15:34:10.444 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.SendPhoneNumberConfirmationTokenAsyncByInput 2023-04-26 15:34:10.444 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.SendEmailConfirmationTokenAsyncByInput 2023-04-26 15:34:10.445 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.ConfirmPhoneNumberAsyncByInput 2023-04-26 15:34:10.445 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.ConfirmEmailAsyncByInput 2023-04-26 15:34:10.445 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.SetProfilePictureAsyncByInput 2023-04-26 15:34:10.445 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.GetProfilePictureAsyncById 2023-04-26 15:34:10.445 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.GetTwoFactorProvidersAsyncByInput 2023-04-26 15:34:10.446 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.SendTwoFactorCodeAsyncByInput 2023-04-26 15:34:10.446 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.GetSecurityLogListAsyncByInput 2023-04-26 15:34:10.446 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.GetProfilePictureFileAsyncById 2023-04-26 15:34:10.446 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.RecaptchaByCaptchaResponse 2023-04-26 15:34:10.446 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.LoginByLogin 2023-04-26 15:34:10.447 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.LinkLoginByLogin 2023-04-26 15:34:10.447 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.Logout 2023-04-26 15:34:10.447 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.CheckPasswordByLogin 2023-04-26 15:34:10.447 +01:00 [DBG] ActionApiDescriptionModel.Create: AccountExternalProvider.GetAllAsync 2023-04-26 15:34:10.447 +01:00 [DBG] ActionApiDescriptionModel.Create: AccountExternalProvider.GetByNameAsyncByInput 2023-04-26 15:34:10.447 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.LinkAsyncByInput 2023-04-26 15:34:10.448 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.UnlinkAsyncByInput 2023-04-26 15:34:10.448 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.IsLinkedAsyncByInput 2023-04-26 15:34:10.448 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.GenerateLinkTokenAsync 2023-04-26 15:34:10.448 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.VerifyLinkTokenAsyncByInput 2023-04-26 15:34:10.448 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.GenerateLinkLoginTokenAsync 2023-04-26 15:34:10.448 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.VerifyLinkLoginTokenAsyncByInput 2023-04-26 15:34:10.448 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.GetAllListAsync 2023-04-26 15:34:10.448 +01:00 [DBG] ActionApiDescriptionModel.Create: Profile.GetAsync 2023-04-26 15:34:10.448 +01:00 [DBG] ActionApiDescriptionModel.Create: Profile.UpdateAsyncByInput 2023-04-26 15:34:10.448 +01:00 [DBG] ActionApiDescriptionModel.Create: Profile.ChangePasswordAsyncByInput 2023-04-26 15:34:10.449 +01:00 [DBG] ActionApiDescriptionModel.Create: Profile.GetTwoFactorEnabledAsync 2023-04-26 15:34:10.449 +01:00 [DBG] ActionApiDescriptionModel.Create: Profile.SetTwoFactorEnabledAsyncByEnabled 2023-04-26 15:34:10.449 +01:00 [DBG] ActionApiDescriptionModel.Create: AbpTenant.FindTenantByNameAsyncByName 2023-04-26 15:34:10.449 +01:00 [DBG] ActionApiDescriptionModel.Create: AbpTenant.FindTenantByIdAsyncById 2023-04-26 15:34:10.449 +01:00 [DBG] ActionApiDescriptionModel.Create: AbpApplicationConfiguration.GetAsync 2023-04-26 15:34:10.449 +01:00 [DBG] ActionApiDescriptionModel.Create: AbpApiDefinition.GetByModel
-
0
2023-04-26 15:34:10.460 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 62.3416ms. 2023-04-26 15:34:10.462 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-26 15:34:10.463 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 80.7004ms 2023-04-26 15:34:10.463 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-26 15:34:10.463 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - - 200 162 application/javascript 96.3476ms 2023-04-26 15:34:10.943 +01:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). 2023-04-26 15:34:10.961 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 572.2032ms. 2023-04-26 15:34:10.963 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-26 15:34:10.964 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-26 15:34:10.965 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 591.7765ms 2023-04-26 15:34:10.965 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-26 15:34:10.968 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:34:10.976 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:34:10.982 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:34:10.982 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - - 200 125329 application/javascript 620.4693ms 2023-04-26 15:34:17.548 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:34:17.556 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:34:17.576 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:34:17.577 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 28.6175ms 2023-04-26 15:34:26.939 +01:00 [INF] Request starting HTTP/2 POST https://localhost:44322/Account/Login application/x-www-form-urlencoded 290 2023-04-26 15:34:26.948 +01:00 [INF] CORS policy execution failed. 2023-04-26 15:34:26.948 +01:00 [INF] Request origin https://localhost:44322 does not have permission to access the resource. 2023-04-26 15:34:26.952 +01:00 [INF] No CORS policy found for the specified request. 2023-04-26 15:34:26.953 +01:00 [INF] Executing endpoint '/Account/Login' 2023-04-26 15:34:26.953 +01:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing page /Account/Login 2023-04-26 15:34:26.953 +01:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2023-04-26 15:34:26.969 +01:00 [INF] Executing handler method Volo.Abp.Account.Public.Web.Pages.Account.LoginModel.OnPostAsync - ModelState is "Valid" 2023-04-26 15:34:27.016 +01:00 [INF] Try to use LDAP for external authentication 2023-04-26 15:34:27.021 +01:00 [WRN] Ldap login feature is not enabled! 2023-04-26 15:34:27.024 +01:00 [INF] Try to use OAUTH for external authentication 2023-04-26 15:34:27.025 +01:00 [WRN] OAuth login feature is not enabled! 2023-04-26 15:34:27.397 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-26 15:34:27.407 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-26 15:34:27.409 +01:00 [INF] Executed handler method OnPostAsync, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. 2023-04-26 15:34:27.410 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-26 15:34:27.410 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-26 15:34:27.458 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 1.13 ms. 2023-04-26 15:34:27.469 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 3.63 ms. 2023-04-26 15:34:27.470 +01:00 [INF] Executed page /Account/Login in 517.1754ms 2023-04-26 15:34:27.470 +01:00 [INF] Executed endpoint '/Account/Login' 2023-04-26 15:34:27.470 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-26 15:34:27.470 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-26 15:34:27.486 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - 2023-04-26 15:34:27.488 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - 2023-04-26 15:34:27.489 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-26 15:34:27.489 +01:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult] Get() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-26 15:34:27.490 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-26 15:34:27.490 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-26 15:34:27.491 +01:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult GetAll(Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel) on controller Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-26 15:34:27.491 +01:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... 2023-04-26 15:34:27.491 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-26 15:34:27.493 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 1.2579ms. 2023-04-26 15:34:27.493 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-26 15:34:27.493 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.3693ms 2023-04-26 15:34:27.493 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-26 15:34:27.493 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - - 200 162 application/javascript 5.6060ms 2023-04-26 15:34:27.600 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-26 15:34:27.600 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-26 15:34:27.614 +01:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). 2023-04-26 15:34:27.619 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:34:27.623 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 133.0892ms. 2023-04-26 15:34:27.624 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-26 15:34:27.624 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-26 15:34:27.629 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:34:27.631 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 142.2987ms 2023-04-26 15:34:27.631 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-26 15:34:27.632 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:34:27.633 +01:00 [INF] Request finished HTTP/2 POST https://localhost:44322/Account/Login application/x-www-form-urlencoded 290 - 200 - text/html;+charset=utf-8 693.8984ms 2023-04-26 15:34:27.634 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:34:27.641 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:34:27.647 +01:00 [WRN] ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script StackExchange.Redis.RedisServerException: ERR Error running script (call to f_3915ee22fda531a1d5661f2523d0443fd35ff0a4): @user_script:2: @user_script: 2: Wrong number of args calling Redis command From Lua script at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<<SetManyAsync>g__SetRealCache|0>d.MoveNext() 2023-04-26 15:34:27.647 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - - 200 125329 application/javascript 161.6794ms 2023-04-26 15:34:32.545 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-26 15:34:32.547 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-26 15:34:32.553 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-26 15:34:32.553 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 8.5520ms
-
0
Hi,
I didn't see any
invalid credentials
message in the logs.BTW, I see Redis errors in your logs: Wrong number of args calling Redis command From Lua script This is a known issue and we have fixed it: https://github.com/abpframework/abp/pull/13711
This is a temporary solution try to add this to your startup project:
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="6.0.5" />
-
0
-
0
2023-04-27 10:39:31.298 +01:00 [INF] Starting NB.Microservices.AuthServer. 2023-04-27 10:39:47.480 +01:00 [INF] Loaded ABP modules: 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.AuthServer.MicroservicesAuthServerModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Security.AbpSecurityModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton.AbpAspNetCoreMvcUiLeptonThemeModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Data.AbpDataModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Json.AbpJsonModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Timing.AbpTimingModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Settings.AbpSettingsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Threading.AbpThreadingModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Http.AbpHttpModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Minify.AbpMinifyModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Validation.AbpValidationModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.UI.AbpUiModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Guids.AbpGuidsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Features.AbpFeaturesModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Commercial.AbpAspNetCoreMvcUiThemeCommercialModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.LeptonTheme.Management.LeptonThemeManagementDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Account.Web.AbpAccountPublicWebIdentityServerModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Account.Public.Web.AbpAccountPublicWebModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Account.AbpAccountPublicApplicationContractsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Account.AbpAccountSharedApplicationContractsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Identity.AbpIdentityProDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Sms.AbpSmsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Identity.AbpIdentityProDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Ldap.AbpLdapModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Caching.AbpCachingModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Gdpr.AbpGdprAbstractionsModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Account.AbpAccountPublicApplicationModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Account.AbpAccountSharedApplicationModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.BlobStoring.AbpBlobStoringModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Account.AbpAccountPublicHttpApiModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.AdministrationService.EntityFrameworkCore.AdministrationServiceEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.AdministrationService.AdministrationServiceDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.AdministrationService.AdministrationServiceDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.LanguageManagement.LanguageManagementDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.TextTemplateManagement.TextTemplateManagementDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.LeptonTheme.Management.LeptonThemeManagementDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.LanguageManagement.LanguageManagementDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.TextTemplateManagement.TextTemplateManagementDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.BlobStoring.Database.EntityFrameworkCore.BlobStoringDatabaseEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.BlobStoring.Database.BlobStoringDatabaseDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.BlobStoring.Database.BlobStoringDatabaseDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.LanguageManagement.EntityFrameworkCore.LanguageManagementEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.TextTemplateManagement.EntityFrameworkCore.TextTemplateManagementEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.IdentityService.EntityFramework.IdentityServiceEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.IdentityService.IdentityServiceDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.IdentityService.IdentityServiceDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityProEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.SaasService.EntityFramework.SaasServiceEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.SaasService.SaasServiceDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.SaasService.SaasServiceDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Saas.SaasDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Payment.AbpPaymentDomainSharedModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Saas.SaasDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Payment.AbpPaymentDomainModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Saas.EntityFrameworkCore.SaasEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Payment.EntityFrameworkCore.AbpPaymentEntityFrameworkCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.Shared.Hosting.AspNetCore.MicroservicesSharedHostingAspNetCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.Shared.Hosting.MicroservicesSharedHostingModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule 2023-04-27 10:39:47.482 +01:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule 2023-04-27 10:39:47.482 +01:00 [INF] - NB.Microservices.MicroservicesSharedLocalizationModule 2023-04-27 10:39:47.584 +01:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker 2023-04-27 10:39:48.429 +01:00 [INF] Starting IdentityServer4 version 4.1.2+997a6cdd643e46cd5762b710c4ddc43574cbec2e 2023-04-27 10:39:49.093 +01:00 [INF] Using the default authentication scheme Identity.Application for IdentityServer 2023-04-27 10:39:49.093 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for authentication 2023-04-27 10:39:49.094 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-in 2023-04-27 10:39:49.094 +01:00 [DBG] Using Identity.External as default ASP.NET Core scheme for sign-out 2023-04-27 10:39:49.094 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for challenge 2023-04-27 10:39:49.094 +01:00 [DBG] Using Identity.Application as default ASP.NET Core scheme for forbid 2023-04-27 10:39:50.323 +01:00 [INF] Initialized all ABP modules. 2023-04-27 10:39:50.458 +01:00 [INF] Now listening on: https://localhost:44322 2023-04-27 10:39:50.458 +01:00 [INF] Application started. Press Ctrl+C to shut down. 2023-04-27 10:39:50.458 +01:00 [INF] Hosting environment: Development
-
0
2023-04-27 10:39:50.458 +01:00 [INF] Content root path: C:\Users\WildervanaMendes\source\repos\NB.Microservices\apps\auth-server\src\NB.Microservices.AuthServer
2023-04-27 10:39:57.779 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:40:00.072 +01:00 [DBG] Login Url: /Account/Login 2023-04-27 10:40:00.072 +01:00 [DBG] Login Return Url Parameter: ReturnUrl 2023-04-27 10:40:00.072 +01:00 [DBG] Logout Url: /Account/Logout 2023-04-27 10:40:00.072 +01:00 [DBG] ConsentUrl Url: /Consent 2023-04-27 10:40:00.072 +01:00 [DBG] Consent Return Url Parameter: returnUrl 2023-04-27 10:40:00.072 +01:00 [DBG] Error Url: /Account/Error 2023-04-27 10:40:00.072 +01:00 [DBG] Error Id Parameter: errorId 2023-04-27 10:40:00.234 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:40:00.269 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:40:00.278 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 2499.4963ms 2023-04-27 10:40:12.564 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/ - - 2023-04-27 10:40:12.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:40:12.712 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:40:12.716 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:40:12.716 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 9.2295ms 2023-04-27 10:40:21.529 +01:00 [INF] Executing endpoint '/Index' 2023-04-27 10:40:21.546 +01:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing page /Index 2023-04-27 10:40:21.548 +01:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2023-04-27 10:40:21.569 +01:00 [INF] Executing handler method NB.Microservices.AuthServer.Pages.IndexModel.OnGet - ModelState is "Valid" 2023-04-27 10:40:21.569 +01:00 [INF] Executed handler method OnGet, returned result Microsoft.AspNetCore.Mvc.RedirectResult. 2023-04-27 10:40:21.572 +01:00 [INF] Executing RedirectResult, redirecting to /Account/Login. 2023-04-27 10:40:21.576 +01:00 [INF] Executed page /Index in 26.1017ms 2023-04-27 10:40:21.577 +01:00 [INF] Executed endpoint '/Index' 2023-04-27 10:40:21.580 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/ - - - 302 0 - 9015.7297ms 2023-04-27 10:40:21.585 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Account/Login - - 2023-04-27 10:40:21.593 +01:00 [INF] Executing endpoint '/Account/Login' 2023-04-27 10:40:21.617 +01:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing page /Account/Login 2023-04-27 10:40:21.617 +01:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2023-04-27 10:40:21.958 +01:00 [INF] Executing handler method Volo.Abp.Account.Public.Web.Pages.Account.LoginModel.OnGetAsync - ModelState is "Valid" 2023-04-27 10:40:21.985 +01:00 [INF] Executed handler method OnGetAsync, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. 2023-04-27 10:40:22.257 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 24.45 ms. 2023-04-27 10:40:22.303 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 12.17 ms. 2023-04-27 10:40:22.314 +01:00 [INF] Executed page /Account/Login in 696.9508ms 2023-04-27 10:40:22.315 +01:00 [INF] Executed endpoint '/Account/Login' 2023-04-27 10:40:22.324 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Account/Login - - - 200 - text/html;+charset=utf-8 738.8207ms 2023-04-27 10:40:22.351 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - 2023-04-27 10:40:22.355 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:40:22.357 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - 2023-04-27 10:40:22.363 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:40:22.365 +01:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult] Get() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-27 10:40:22.366 +01:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult GetAll(Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel) on controller Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-27 10:40:22.379 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-27 10:40:22.379 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-27 10:40:22.383 +01:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... 2023-04-27 10:40:22.409 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.RegisterAsyncByInput 2023-04-27 10:40:22.416 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.SendPasswordResetCodeAsyncByInput 2023-04-27 10:40:22.416 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.ResetPasswordAsyncByInput 2023-04-27 10:40:22.416 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.GetConfirmationStateAsyncById 2023-04-27 10:40:22.416 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.SendPhoneNumberConfirmationTokenAsyncByInput 2023-04-27 10:40:22.416 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.SendEmailConfirmationTokenAsyncByInput 2023-04-27 10:40:22.417 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.ConfirmPhoneNumberAsyncByInput 2023-04-27 10:40:22.417 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.ConfirmEmailAsyncByInput 2023-04-27 10:40:22.417 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.SetProfilePictureAsyncByInput 2023-04-27 10:40:22.417 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.GetProfilePictureAsyncById 2023-04-27 10:40:22.417 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.GetTwoFactorProvidersAsyncByInput 2023-04-27 10:40:22.418 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.SendTwoFactorCodeAsyncByInput 2023-04-27 10:40:22.418 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.GetSecurityLogListAsyncByInput 2023-04-27 10:40:22.418 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.GetProfilePictureFileAsyncById 2023-04-27 10:40:22.418 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.RecaptchaByCaptchaResponse 2023-04-27 10:40:22.418 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.LoginByLogin 2023-04-27 10:40:22.419 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.LinkLoginByLogin 2023-04-27 10:40:22.419 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.Logout 2023-04-27 10:40:22.419 +01:00 [DBG] ActionApiDescriptionModel.Create: Account.CheckPasswordByLogin 2023-04-27 10:40:22.419 +01:00 [DBG] ActionApiDescriptionModel.Create: AccountExternalProvider.GetAllAsync 2023-04-27 10:40:22.419 +01:00 [DBG] ActionApiDescriptionModel.Create: AccountExternalProvider.GetByNameAsyncByInput 2023-04-27 10:40:22.419 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.LinkAsyncByInput 2023-04-27 10:40:22.420 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.UnlinkAsyncByInput 2023-04-27 10:40:22.420 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.IsLinkedAsyncByInput 2023-04-27 10:40:22.420 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.GenerateLinkTokenAsync 2023-04-27 10:40:22.420 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.VerifyLinkTokenAsyncByInput 2023-04-27 10:40:22.420 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.GenerateLinkLoginTokenAsync 2023-04-27 10:40:22.420 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.VerifyLinkLoginTokenAsyncByInput 2023-04-27 10:40:22.420 +01:00 [DBG] ActionApiDescriptionModel.Create: IdentityLinkUser.GetAllListAsync 2023-04-27 10:40:22.420 +01:00 [DBG] ActionApiDescriptionModel.Create: Profile.GetAsync 2023-04-27 10:40:22.420 +01:00 [DBG] ActionApiDescriptionModel.Create: Profile.UpdateAsyncByInput 2023-04-27 10:40:22.420 +01:00 [DBG] ActionApiDescriptionModel.Create: Profile.ChangePasswordAsyncByInput 2023-04-27 10:40:22.421 +01:00 [DBG] ActionApiDescriptionModel.Create: Profile.GetTwoFactorEnabledAsync 2023-04-27 10:40:22.421 +01:00 [DBG] ActionApiDescriptionModel.Create: Profile.SetTwoFactorEnabledAsyncByEnabled 2023-04-27 10:40:22.421 +01:00 [DBG] ActionApiDescriptionModel.Create: AbpTenant.FindTenantByNameAsyncByName 2023-04-27 10:40:22.421 +01:00 [DBG] ActionApiDescriptionModel.Create: AbpTenant.FindTenantByIdAsyncById 2023-04-27 10:40:22.421 +01:00 [DBG] ActionApiDescriptionModel.Create: AbpApplicationConfiguration.GetAsync 2023-04-27 10:40:22.421 +01:00 [DBG] ActionApiDescriptionModel.Create: AbpApiDefinition.GetByModel -
0
2023-04-27 10:40:22.429 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 45.845ms. 2023-04-27 10:40:22.431 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-27 10:40:22.432 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 65.9119ms 2023-04-27 10:40:22.432 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:40:22.432 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - - 200 162 application/javascript 75.7437ms 2023-04-27 10:40:22.777 +01:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). 2023-04-27 10:40:22.801 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 422.3149ms. 2023-04-27 10:40:22.807 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:40:22.809 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-27 10:40:22.810 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 445.0685ms 2023-04-27 10:40:22.810 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:40:22.812 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - - 200 125329 application/javascript 461.9153ms 2023-04-27 10:40:27.706 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:40:27.709 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:40:27.720 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:40:27.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 14.2614ms 2023-04-27 10:40:36.528 +01:00 [INF] Request starting HTTP/2 POST https://localhost:44322/Account/Login application/x-www-form-urlencoded 290 2023-04-27 10:40:36.541 +01:00 [INF] CORS policy execution failed. 2023-04-27 10:40:36.541 +01:00 [INF] Request origin https://localhost:44322 does not have permission to access the resource. 2023-04-27 10:40:36.546 +01:00 [INF] No CORS policy found for the specified request. 2023-04-27 10:40:36.547 +01:00 [INF] Executing endpoint '/Account/Login' 2023-04-27 10:40:36.547 +01:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing page /Account/Login 2023-04-27 10:40:36.547 +01:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2023-04-27 10:40:36.571 +01:00 [INF] Executing handler method Volo.Abp.Account.Public.Web.Pages.Account.LoginModel.OnPostAsync - ModelState is "Valid" 2023-04-27 10:40:36.606 +01:00 [INF] Try to use LDAP for external authentication 2023-04-27 10:40:36.608 +01:00 [WRN] Ldap login feature is not enabled! 2023-04-27 10:40:36.612 +01:00 [INF] Try to use OAUTH for external authentication 2023-04-27 10:40:36.613 +01:00 [WRN] OAuth login feature is not enabled! 2023-04-27 10:40:36.949 +01:00 [WRN] Savepoints are disabled because Multiple Active Result Sets (MARS) is enabled. If 'SaveChanges' fails, then the transaction cannot be automatically rolled back to a known clean state. Instead, the transaction should be rolled back by the application before retrying 'SaveChanges'. See https://go.microsoft.com/fwlink/?linkid=2149338 for more information. To identify the code which triggers this warning, call 'ConfigureWarnings(w => w.Throw(SqlServerEventId.SavepointsDisabledBecauseOfMARS))'. 2023-04-27 10:40:37.019 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:40:37.212 +01:00 [DBG] Augmenting SignInContext 2023-04-27 10:40:37.213 +01:00 [DBG] Adding idp claim with value: local 2023-04-27 10:40:37.213 +01:00 [DBG] Adding auth_time claim with value: 1682588437 2023-04-27 10:40:37.217 +01:00 [INF] AuthenticationScheme: Identity.Application signed in. 2023-04-27 10:40:37.315 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:40:37.324 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:40:37.330 +01:00 [INF] Executed handler method OnPostAsync, returned result Microsoft.AspNetCore.Mvc.RedirectResult. 2023-04-27 10:40:37.331 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:40:37.332 +01:00 [INF] Executing RedirectResult, redirecting to /. 2023-04-27 10:40:37.332 +01:00 [INF] Executed page /Account/Login in 784.5942ms 2023-04-27 10:40:37.332 +01:00 [INF] Executed endpoint '/Account/Login' 2023-04-27 10:40:37.332 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:40:37.424 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:40:37.425 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:40:37.436 +01:00 [INF] Request finished HTTP/2 POST https://localhost:44322/Account/Login application/x-www-form-urlencoded 290 - 302 0 - 908.4846ms 2023-04-27 10:40:37.439 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/ - - 2023-04-27 10:40:37.446 +01:00 [INF] Executing endpoint '/Index' 2023-04-27 10:40:37.446 +01:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing page /Index 2023-04-27 10:40:37.446 +01:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2023-04-27 10:40:37.446 +01:00 [INF] Executing handler method NB.Microservices.AuthServer.Pages.IndexModel.OnGet - ModelState is "Valid" 2023-04-27 10:40:37.446 +01:00 [INF] Executed handler method OnGet, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. 2023-04-27 10:40:37.474 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 1.97 ms. 2023-04-27 10:40:37.558 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 3.66 ms. 2023-04-27 10:40:37.559 +01:00 [INF] Executed page /Index in 113.3011ms 2023-04-27 10:40:37.559 +01:00 [INF] Executed endpoint '/Index' 2023-04-27 10:40:37.570 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/ - - - 200 - text/html;+charset=utf-8 130.8100ms 2023-04-27 10:40:37.576 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/api/account/profile-picture-file/6538968c-cfd9-8c20-e13d-3a0aa762a3fe - - 2023-04-27 10:40:37.576 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - 2023-04-27 10:40:37.584 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:40:37.584 +01:00 [INF] Executing endpoint 'Volo.Abp.Account.AccountController.GetProfilePictureFileAsync (Volo.Abp.Account.Pro.Public.HttpApi)' 2023-04-27 10:40:37.584 +01:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult] Get() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-27 10:40:37.585 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-27 10:40:37.585 +01:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()...
-
0
2023-04-27 10:40:37.586 +01:00 [INF] Route matched with {area = "account", action = "GetProfilePictureFile", controller = "Account", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Content.IRemoteStreamContent] GetProfilePictureFileAsync(System.Guid) on controller Volo.Abp.Account.AccountController (Volo.Abp.Account.Pro.Public.HttpApi). 2023-04-27 10:40:37.592 +01:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Roles,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Roles.Create,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Roles.Update,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Roles.Delete,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AuditLogging.ViewChangeHistory:Volo.Abp.Identity.IdentityRole,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.Create,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.Update,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.Delete,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AuditLogging.ViewChangeHistory:Volo.Abp.Identity.IdentityUser,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.Impersonation,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.Import,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.OrganizationUnits,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.OrganizationUnits.ManageOU,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.OrganizationUnits.ManageRoles,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.OrganizationUnits.ManageMembers,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.ClaimTypes,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.ClaimTypes.Create,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.ClaimTypes.Update,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.ClaimTypes.Delete,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.SettingManagement,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.SecurityLogs 2023-04-27 10:40:37.594 +01:00 [DBG] Not found in the cache: pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Roles,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Roles.Create,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Roles.Update,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Roles.Delete,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AuditLogging.ViewChangeHistory:Volo.Abp.Identity.IdentityRole,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.Create,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.Update,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.Delete,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AuditLogging.ViewChangeHistory:Volo.Abp.Identity.IdentityUser,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.Impersonation,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.Users.Import,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.OrganizationUnits,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.OrganizationUnits.ManageOU,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.OrganizationUnits.ManageRoles,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.OrganizationUnits.ManageMembers,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.ClaimTypes,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.ClaimTypes.Create,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.ClaimTypes.Update,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.ClaimTypes.Delete,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.SettingManagement,pn:U,pk:6538968c-cfd9-8c20-e13d-3a0aa762a3fe,n:AbpIdentity.SecurityLogs 2023-04-27 10:40:37.599 +01:00 [DBG] Getting not cache granted permissions from the repository for this provider name,key: U,6538968c-cfd9-8c20-e13d-3a0aa762a3fe 2023-04-27 10:40:37.599 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - 2023-04-27 10:40:37.604 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:40:37.604 +01:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult GetAll(Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel) on controller Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-27 10:40:37.605 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-27 10:40:37.606 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 0.9331ms. 2023-04-27 10:40:37.606 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-27 10:40:37.606 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8563ms 2023-04-27 10:40:37.606 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:40:37.606 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - - 200 162 application/javascript 7.0393ms 2023-04-27 10:40:37.617 +01:00 [DBG] Setting the cache items. Count: 24 2023-04-27 10:40:37.625 +01:00 [DBG] Finished setting the cache items. Count: 24 2023-04-27 10:40:37.627 +01:00 [INF] Executing action method Volo.Abp.Account.AccountController.GetProfilePictureFileAsync (Volo.Abp.Account.Pro.Public.HttpApi) - Validation state: "Valid" 2023-04-27 10:40:37.645 +01:00 [INF] Executed action method Volo.Abp.Account.AccountController.GetProfilePictureFileAsync (Volo.Abp.Account.Pro.Public.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 18.6136ms. 2023-04-27 10:40:37.647 +01:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Content.RemoteStreamContent'. 2023-04-27 10:40:37.648 +01:00 [INF] Executed action Volo.Abp.Account.AccountController.GetProfilePictureFileAsync (Volo.Abp.Account.Pro.Public.HttpApi) in 62.1965ms 2023-04-27 10:40:37.648 +01:00 [INF] Executed endpoint 'Volo.Abp.Account.AccountController.GetProfilePictureFileAsync (Volo.Abp.Account.Pro.Public.HttpApi)' 2023-04-27 10:40:37.649 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/api/account/profile-picture-file/6538968c-cfd9-8c20-e13d-3a0aa762a3fe - - - 200 2939 image/jpeg 72.9386ms 2023-04-27 10:40:37.704 +01:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). 2023-04-27 10:40:37.713 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 128.3089ms. 2023-04-27 10:40:37.713 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:40:37.714 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-27 10:40:37.714 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 130.0953ms 2023-04-27 10:40:37.714 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:40:37.714 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - - 200 125460 application/javascript 137.7443ms 2023-04-27 10:40:42.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:40:42.711 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:40:42.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:40:42.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 13.8348ms 2023-04-27 10:40:57.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:40:57.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:40:57.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:40:57.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.3916ms 2023-04-27 10:41:12.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:41:12.716 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:41:12.727 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:41:12.727 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 17.7500ms 2023-04-27 10:41:27.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:41:27.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:41:27.720 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:41:27.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.3540ms 2023-04-27 10:41:42.706 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:41:42.708 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:41:42.714 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:41:42.714 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 8.1148ms 2023-04-27 10:41:55.854 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Account/Logout - - 2023-04-27 10:41:55.860 +01:00 [INF] Executing endpoint '/Account/Logout' 2023-04-27 10:41:55.862 +01:00 [INF] Route matched with {page = "/Account/Logout", area = "", action = "", controller = ""}. Executing page /Account/Logout 2023-04-27 10:41:55.862 +01:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2023-04-27 10:41:55.870 +01:00 [INF] Executing handler method Volo.Abp.Account.Public.Web.Pages.Account.LogoutModel.OnGetAsync - ModelState is "Valid" 2023-04-27 10:41:55.882 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:41:55.882 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:41:55.885 +01:00 [INF] AuthenticationScheme: Identity.Application signed out. 2023-04-27 10:41:55.885 +01:00 [INF] AuthenticationScheme: Identity.External signed out. 2023-04-27 10:41:55.885 +01:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. 2023-04-27 10:41:55.885 +01:00 [INF] Executed handler method OnGetAsync, returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult. 2023-04-27 10:41:55.886 +01:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. 2023-04-27 10:41:55.886 +01:00 [INF] Executed page /Account/Logout in 23.7303ms 2023-04-27 10:41:55.886 +01:00 [INF] Executed endpoint '/Account/Logout' 2023-04-27 10:41:55.886 +01:00 [DBG] SignOutCalled set; processing post-signout session cleanup. 2023-04-27 10:41:55.888 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Account/Logout - - - 302 0 - 34.3768ms 2023-04-27 10:41:55.891 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Account/Login - - 2023-04-27 10:41:55.893 +01:00 [INF] Executing endpoint '/Account/Login' 2023-04-27 10:41:55.893 +01:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing page /Account/Login 2023-04-27 10:41:55.893 +01:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2023-04-27 10:41:55.897 +01:00 [INF] Executing handler method Volo.Abp.Account.Public.Web.Pages.Account.LoginModel.OnGetAsync - ModelState is "Valid" 2023-04-27 10:41:55.901 +01:00 [INF] Executed handler method OnGetAsync, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. 2023-04-27 10:41:55.919 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 1.41 ms. 2023-04-27 10:41:55.924 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 3.15 ms. 2023-04-27 10:41:55.924 +01:00 [INF] Executed page /Account/Login in 31.5085ms 2023-04-27 10:41:55.924 +01:00 [INF] Executed endpoint '/Account/Login'
-
0
2023-04-27 10:41:55.925 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Account/Login - - - 200 - text/html;+charset=utf-8 34.1536ms 2023-04-27 10:41:55.938 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - 2023-04-27 10:41:55.938 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - 2023-04-27 10:41:55.941 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:41:55.941 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:41:55.941 +01:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult GetAll(Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel) on controller Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-27 10:41:55.941 +01:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult] Get() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-27 10:41:55.941 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-27 10:41:55.942 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-27 10:41:55.942 +01:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... 2023-04-27 10:41:55.943 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 1.1063ms. 2023-04-27 10:41:55.943 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-27 10:41:55.943 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2791ms 2023-04-27 10:41:55.943 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:41:55.943 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - - 200 162 application/javascript 4.8012ms 2023-04-27 10:41:56.005 +01:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). 2023-04-27 10:41:56.014 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 72.1009ms. 2023-04-27 10:41:56.014 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-27 10:41:56.015 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 74.6287ms 2023-04-27 10:41:56.015 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:41:56.016 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - - 200 125329 application/javascript 77.3057ms 2023-04-27 10:41:57.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:41:57.721 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:41:57.733 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:41:57.733 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 23.1765ms 2023-04-27 10:42:04.599 +01:00 [INF] Request starting HTTP/2 POST https://localhost:44322/Account/Login application/x-www-form-urlencoded 290 2023-04-27 10:42:04.600 +01:00 [INF] CORS policy execution failed. 2023-04-27 10:42:04.600 +01:00 [INF] Request origin https://localhost:44322 does not have permission to access the resource. 2023-04-27 10:42:04.602 +01:00 [INF] No CORS policy found for the specified request. 2023-04-27 10:42:04.603 +01:00 [INF] Executing endpoint '/Account/Login' 2023-04-27 10:42:04.604 +01:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing page /Account/Login 2023-04-27 10:42:04.604 +01:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2023-04-27 10:42:04.611 +01:00 [INF] Executing handler method Volo.Abp.Account.Public.Web.Pages.Account.LoginModel.OnPostAsync - ModelState is "Valid" 2023-04-27 10:42:04.620 +01:00 [INF] Try to use LDAP for external authentication 2023-04-27 10:42:04.621 +01:00 [WRN] Ldap login feature is not enabled! 2023-04-27 10:42:04.621 +01:00 [INF] Try to use OAUTH for external authentication 2023-04-27 10:42:04.622 +01:00 [WRN] OAuth login feature is not enabled! 2023-04-27 10:42:04.641 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:42:04.641 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:42:04.642 +01:00 [INF] Executed handler method OnPostAsync, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. 2023-04-27 10:42:04.643 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:42:04.663 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 1.42 ms. 2023-04-27 10:42:04.670 +01:00 [DBG] Added bundle 'Lepton.Global' to the page in 3.42 ms. 2023-04-27 10:42:04.670 +01:00 [INF] Executed page /Account/Login in 66.7297ms 2023-04-27 10:42:04.670 +01:00 [INF] Executed endpoint '/Account/Login' 2023-04-27 10:42:04.670 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:42:04.684 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:42:04.685 +01:00 [DBG] Added 0 entity changes to the current audit log 2023-04-27 10:42:04.685 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - 2023-04-27 10:42:04.685 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - 2023-04-27 10:42:04.688 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:42:04.688 +01:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:42:04.688 +01:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult GetAll(Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel) on controller Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-27 10:42:04.688 +01:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult] Get() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController (Volo.Abp.AspNetCore.Mvc). 2023-04-27 10:42:04.688 +01:00 [INF] Request finished HTTP/2 POST https://localhost:44322/Account/Login application/x-www-form-urlencoded 290 - 200 - text/html;+charset=utf-8 89.0470ms 2023-04-27 10:42:04.689 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-27 10:42:04.689 +01:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" 2023-04-27 10:42:04.689 +01:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... 2023-04-27 10:42:04.690 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 0.9698ms. 2023-04-27 10:42:04.690 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-27 10:42:04.690 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1362ms 2023-04-27 10:42:04.690 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:42:04.690 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ServiceProxyScript - - - 200 162 application/javascript 5.3276ms 2023-04-27 10:42:04.744 +01:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). 2023-04-27 10:42:04.751 +01:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ContentResult in 62.2501ms. 2023-04-27 10:42:04.752 +01:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2023-04-27 10:42:04.757 +01:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 69.4412ms 2023-04-27 10:42:04.757 +01:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2023-04-27 10:42:04.758 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44322/Abp/ApplicationConfigurationScript - - - 200 125329 application/javascript 72.7431ms 2023-04-27 10:42:12.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:42:12.709 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:42:12.716 +01:00 [INF] Executed endpoint 'Prometheus metrics'
-
0
2023-04-27 10:42:12.716 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 9.6041ms 2023-04-27 10:42:27.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:42:27.709 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:42:27.714 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:42:27.714 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 7.7223ms 2023-04-27 10:42:42.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:42:42.716 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:42:42.722 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:42:42.722 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.7454ms 2023-04-27 10:42:57.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:42:57.710 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:42:57.718 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:42:57.719 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.3711ms 2023-04-27 10:43:12.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:43:12.719 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:43:12.728 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:43:12.728 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 17.9372ms 2023-04-27 10:43:27.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:43:27.709 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:43:27.715 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:43:27.715 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 8.0852ms 2023-04-27 10:43:42.706 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:43:42.709 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:43:42.716 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:43:42.716 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 9.8132ms 2023-04-27 10:43:57.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:43:57.710 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:43:57.715 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:43:57.716 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 8.9110ms 2023-04-27 10:44:12.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:44:12.710 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:44:12.717 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:44:12.718 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 10.0829ms 2023-04-27 10:44:27.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:44:27.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:44:27.722 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:44:27.723 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 13.1339ms 2023-04-27 10:44:42.706 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:44:42.709 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:44:42.716 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:44:42.716 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 9.7175ms 2023-04-27 10:44:57.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:44:57.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:44:57.720 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:44:57.720 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.3744ms 2023-04-27 10:45:12.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:45:12.716 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:45:12.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:45:12.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 10.4572ms 2023-04-27 10:45:27.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:45:27.719 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:45:27.725 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:45:27.725 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 16.1095ms 2023-04-27 10:45:42.708 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:45:42.713 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:45:42.720 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:45:42.720 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.5557ms 2023-04-27 10:45:57.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:45:57.709 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:45:57.715 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:45:57.715 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 8.3214ms 2023-04-27 10:46:12.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:46:12.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:46:12.720 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:46:12.720 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.4647ms 2023-04-27 10:46:27.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:46:27.709 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:46:27.715 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:46:27.715 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 8.5057ms 2023-04-27 10:46:42.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:46:42.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:46:42.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:46:42.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.2995ms 2023-04-27 10:46:57.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:46:57.711 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:46:57.719 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:46:57.719 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 10.5294ms 2023-04-27 10:47:12.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:47:12.714 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:47:12.720 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:47:12.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 10.7605ms 2023-04-27 10:47:27.708 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:47:27.714 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:47:27.719 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:47:27.720 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.4888ms 2023-04-27 10:47:42.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:47:42.714 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:47:42.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:47:42.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.6578ms 2023-04-27 10:47:57.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:47:57.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:47:57.723 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:47:57.723 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 13.5954ms 2023-04-27 10:48:12.715 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:48:12.718 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:48:12.724 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:48:12.724 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 9.0602ms 2023-04-27 10:48:27.708 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:48:27.710 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:48:27.716 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:48:27.716 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 8.7787ms 2023-04-27 10:48:42.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:48:42.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:48:42.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:48:42.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.2249ms 2023-04-27 10:48:57.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:48:57.730 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:48:57.737 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:48:57.737 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 29.8248ms 2023-04-27 10:49:12.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:49:12.710 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:49:12.716 +01:00 [INF] Executed endpoint 'Prometheus metrics'
-
0
2023-04-27 10:49:12.716 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 9.3414ms 2023-04-27 10:49:27.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:49:27.714 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:49:27.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:49:27.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.8684ms 2023-04-27 10:49:42.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:49:42.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:49:42.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:49:42.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.5508ms 2023-04-27 10:49:57.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:49:57.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:49:57.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:49:57.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 12.7668ms 2023-04-27 10:50:12.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:50:12.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:50:12.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:50:12.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.0030ms 2023-04-27 10:50:27.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:50:27.716 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:50:27.722 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:50:27.722 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 12.8908ms 2023-04-27 10:50:42.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:50:42.716 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:50:42.732 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:50:42.732 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 22.8206ms 2023-04-27 10:50:57.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:50:57.709 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:50:57.715 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:50:57.716 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 8.4597ms 2023-04-27 10:51:12.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:51:12.710 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:51:12.717 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:51:12.717 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 8.2028ms 2023-04-27 10:51:27.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:51:27.716 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:51:27.722 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:51:27.723 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 13.8685ms 2023-04-27 10:51:42.707 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:51:42.710 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:51:42.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:51:42.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 13.9956ms 2023-04-27 10:51:57.709 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:51:57.717 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:51:57.735 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:51:57.735 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 26.3420ms 2023-04-27 10:52:12.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:52:12.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:52:12.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:52:12.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.6107ms 2023-04-27 10:52:27.708 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:52:27.712 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:52:27.719 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:52:27.719 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 10.7977ms 2023-04-27 10:52:42.710 +01:00 [INF] Request starting HTTP/2 GET https://host.docker.internal:44322/metrics - - 2023-04-27 10:52:42.715 +01:00 [INF] Executing endpoint 'Prometheus metrics' 2023-04-27 10:52:42.721 +01:00 [INF] Executed endpoint 'Prometheus metrics' 2023-04-27 10:52:42.721 +01:00 [INF] Request finished HTTP/2 GET https://host.docker.internal:44322/metrics - - - 200 - text/plain;+version=0.0.4;+charset=utf-8 11.0153ms
-
0
Hi,
You need to switch the current tenant before logging in:
I'm determine current tenant by user. I followed indications of documentation https://docs.abp.io/en/abp/latest/Multi-Tenancy After trying to log in, I receive a message of invalid credentials. Can you give me some suggestions?
I have following code in the projects AuthServer and Blazor:
Configure<AbpTenantResolveOptions>(options => {
options.TenantResolvers.Add(new CurrentUserTenantResolveContributor()); });The
CurrentUserTenantResolveContributor
requires that the user is already logged inGets the tenant id from claims of the current user, if the current user has logged in.
-
0
-
0
The CurrentUserTenantResolveContributor requires that the user is already logged in
Gets the tenant id from claims of the current user if the current user has logged in.
This means it's not possible, you have to determine the tenant via a cookie or something else.
BTW, you maybe want to check this: https://support.abp.io/QA/Questions/4914
-
0
Hi,
thank you very much for the input, it responded in full to all my doubts