Upgrading ASP.NET Core 5.0 IdentityServer4 to 6.0 error - no such table: Keys
Solution 1:
Disable the management of certificates via database (Table 'Keys' doesn't exists). You can stay loading certificates from any other available source.
services.AddIdentityServer(options => {
options.KeyManagement.Enabled = false;
})