AD user can not access On-Prem Orchestrator. Gets the error message #216.
Issue Description:
Based on the event viewer logs it is seen that User is not active. It is displayed in Orchestrator interface and have needed privileges assigned:
Resolution:
- Check Db tables for the specific user:
select * from dbo.users
select * from identity.AspNetUsers
- Check the 'IsActive' Column for the specific user in both tables. It should be set to 1 (active).
- Update the DB table and set IsActive=1
update [identity].[AspNetUsers] set IsActive=1 where Id = 'UserID'
Note: Id from identity.AspNetUsers should match Key column from dbo.users table.