Hello Team,
OUR ABP CONFIGURATION:
ABP Framework version: v7.0.0 UI type: MVC DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): Tiered MVC Exception message and stack trace
We have deployed our ABP application on IIS server, we have tiered MVC application so we hosted all ports:
Auth server (port - 44349) : hosted on https://authserver.stage.careermaps.co.uk/ on IIS
Swagger (port- 44324) : hosted on https://host.stage.careermaps.co.uk/
Web-App (port 44389) : hosted on https://web.stage.careermaps.co.uk/
ISSUE:
we are using this command to run migration in host project to update module database :
dotnet ef database update --no-drop --context CareerMapsHttpApiHostMigrationsDbContext
Is there anyway we can only run migration for addition of new tables or updated columns rather than deleting all tables and create again?
This is the link we initially referred to create separate database for separate module : https://blog.antosubash.com/posts/abp-add-new-module-with-seperate-db
Thanks
Hello Team,
OUR ABP CONFIGURATION:
ABP Framework version: v7.0.0 UI type: MVC DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): Tiered MVC Exception message and stack trace
We have deployed our ABP application on IIS server, we have tiered MVC application so we hosted all ports:
Auth server (port - 44349) : hosted on https://authserver.stage.careermaps.co.uk/ on IIS
Swagger (port- 44324) : hosted on https://host.stage.careermaps.co.uk/
Web-App (port 44389) : hosted on https://web.stage.careermaps.co.uk/
Issue:
To test you can use default admin credentials.
Can you please assist us on this?
Thanks
Hello Team,
OUR ABP CONFIGURATION:
ABP Framework version: v7.0.0 UI type: MVC DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): Tiered MVC Exception message and stack trace
We have deployed our ABP application on IIS server, we have tiered MVC application so we hosted all ports:
The issue is when we open https://web.stage.careermaps.co.uk/ this site it redirect us to on this URL : https://authserver.stage.careermaps.co.uk/Error?httpStatusCode=400
We have modified table [OpenIddictApplications] with live URLs as well :
For our web app :
GTCManagement_Web: PostLogoutRedirectUris : ["https://web.stage.careermaps.co.uk/signout-callback-oidc"] RedirectUris : ["https://web.stage.careermaps.co.uk/signin-oidc"] ClientUris : https://web.stage.careermaps.co.uk/
For our swagger app : GTCManagement_Swagger: PostLogoutRedirectUris :NULL RedirectUris : ["https://host.stage.careermaps.co.uk/swagger/oauth2-redirect.html"] ClientUris : https://host.stage.careermaps.co.uk
Don't know if anything needs to change for AUTH server.
Please help us or share some direction to resolve this, we are using redis cloud here.
Steps to reproduce:
All URLs : https://authserver.stage.careermaps.co.uk/ https://web.stage.careermaps.co.uk/ https://host.stage.careermaps.co.uk
Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
If you're creating a bug/problem report, please include followings:
Hey abp team As we know when we create over a project we will get the identity model in that we have a user, and role management this is in my main database and I have another one model where I have the Candidate table which is in another database. in roles, i have a practitioner and i want to assign Practitioner to the Candidates
as we can see in the screenshot I have two models with a separate database modelA has Candidates and Mylearning2 has another one database and tables which ABP provide. I want to Access this Mylearning2 database tables on my ModelA model