Database Management
Use Microsoft Entra ID (formerly Azure AD) authentication in DPA
How to use Microsoft Entra ID (formerly Azure AD) authentication in DPA if one or both of the following conditions apply to your environment: 1. Your repository database is Azure SQL. 2. You are monitoring one or more Azure SQL databases.
First published date
Last published date
Overview
You can use Microsoft Entra ID authentication in DPA if one or both of the following conditions apply to your environment:
- Your repository database is Azure SQL.
- You are monitoring one or more Azure SQL databases.
This form of authentication is only available if the DPA server is running on a Windows operating system.
Note: This feature for LDAP auth with the above steps will not work if the Azure instance also has Multi-factor authentication turned on for the instance. This is a known limitation.
https://docs.microsoft.com/en-us/azure/multi-factor-authentication/multi-factor-authentication
Product section
Resolution
- If you are using DPA 11.1 or earlier, complete the following steps. (If you are using DPA 12.0 or later, continue with step 2.)
- On the DPA server, download and run ENU\x64\adalsql.msi from Microsoft.
- Download and run enu\sqljdbc_6.0.7728.100_enu.exe from Microsoft.
- Copy sqljdbc_auth.dll from Microsoft JDBC Driver 6.0 for SQL Server\sqljdbc_6.0\enu\auth\x64 to C:\Windows\System32 on the DPA server.
- Restart DPA.
- Add the Active Directory admin to the Logical Server where the monitored database is located. See this document from Microsoft for more information.
- Connect to the Azure database with an Active Directory account and execute the appropriate script:
- For an Azure SQL repository database
CREATE USER [activeDirectoryUser@*.onmicrosoft.com] FROM EXTERNAL PROVIDER WITH DEFAULT_SCHEMA = [ignite]; ALTER ROLE db_owner ADD member [activeDirectoryUser@*.onmicrosoft.com]; GO CREATE SCHEMA [ignite] AUTHORIZATION [activeDirectoryUser@*.onmicrosoft.com]; - For a monitored Azure SQL database
CREATE USER [activeDirectoryUser@*.onmicrosoft.com] FROM EXTERNAL PROVIDER; ALTER ROLE db_owner ADD member [activeDirectoryUser@*.onmicrosoft.com];
- For an Azure SQL repository database
- In DPA, run the Create Repository or Register Instance wizard.
- When entering the connection information, click Advanced Connection Properties.
-
If you are using DPA 11.1 or earlier, enter the following in the JDBC URL Properties field and click OK:
Authentication=ActiveDirectoryPassword;HostNameInCertificate=*.database.windows.net
Note: If you are using DPA 12.0 or later, the ActiveDirectoryPassword is added automatically when @ is detected in the user name, and the HostNameInCertificate is part of every Azure connection.
- Click I'll create the contained user or login, and enter credentials.
- Complete the wizard.