SQL SERVER Integration and Active Directory

0
Hello, I would like to know if it is possible to have Active Directory authentication pointing to a database in SQL Server, where I have user and passwords. The issue is that I have a user base and that all systems authenticate to it, I would like to use that same base for the authentication of the users in the domain, because I would keep the same password in the applications and AD.

    
asked by anonymous 16.05.2014 / 21:15

2 answers

1

It is not possible, because the AD uses its own database, so the information is concentrated on that basis. However, it is possible to do the reverse. Just create an application to adapt your applications to Single Sign On, that is, all login screens of your application, will be directed to a specific application and that application, will authenticate to AD.

link

link

    
19.05.2014 / 20:19
0

Unfortunately, Active Directory can not use an outsourced database. That way, you will not be able to configure it to use your own.

Looking quickly, Active Directory has some things that programs can use to interact with AD. The Active Directory Service Interfaces (in English) would be a possible solution to connect your data and put it inside the AD to use it

    
06.06.2014 / 01:17