{question}
After setting up the SingleStore cluster and Studio to authenticate with Kerberos, a basic authentication dialog pops up, and the user cannot authenticate. Why is that?
{question}
{answer}
This is likely due to the browser not being configured by default to allow passthrough authentication. To allow passthrough authentication, use the below examples:
Chrome
Set both --auth-server-whitelist and --auth-negotiate-delegate-whitelist to allow the current directory domain. Example:
chrome.exe --auth-server-whitelist="*.DOMAIN.LOCAL" --auth-negotiate-delegate-whitelist="*.DOMAIN.LOCAL"
Firefox
In Firefox, navigate to the about:config page and set the parameters with the domain:
network.negotiate-auth.trusted-uris
network.automatic-ntlm-auth.trusted-uris
{answer}