Kerberos Connection Error #1517
-
I have a server for which I am having trouble connecting to in DBA Dash.
I can connect to other servers in DBA Dash which have certs and require encrypted connections. This one server is special for some reason. SPNs, and Kerberos bits all seem to check out. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Do you get the error when adding a source connection in the config tool? If it occurs while using the config tool, it would use the account you are logged in as. Otherwise, it will connect as the service user account. The service user account should be a domain user for Windows authentication to work. Also, the machine running the service should be part of the same domain as the monitored instance (cross domain can work with a trust relationship in place). |
Beta Was this translation helpful? Give feedback.
I think the DBA Dash connection dialog should have a separate "Microsoft Entra Integrated" option. The "Windows Authentication" option is adding
Authentication=ActiveDirectoryIntegrated
instead ofIntegrated Security=True
.I haven't seen
Authentication=ActiveDirectoryIntegrated
fail in any scenario whereIntegrated Security=True
works. ActiveDirectoryIntegrated is designed to work with Azure AD, but also appears to behave the same as Integrated Security outside of Azure AD. I think we might be seeing a difference here though.Instead of using the connection dialog, try adding the connection string manually using
Integrated Security=True
instead ofAuthentication=ActiveDirectoryIntegrated
.…