1

I have an ASP.NET application with Forms Authentication. There is a users table in the DB with Id, UserName, PasswordHash and PasswordSalt.

Is it possible to migrate these users over to a fresh Thinktecture IdentityServer installation while keeping their existing credentials?

Adam Szabo
  • 11,302
  • 18
  • 64
  • 100

1 Answers1

4

You don't migrate users TO identity server. You would rather implement a user service to connect identity server to your existing user store.

see here: https://identityserver.github.io/Documentation/docsv2/advanced/userService.html

leastprivilege
  • 18,196
  • 1
  • 34
  • 50