We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am unable to connect to our internally hosted druid server which has a basic authentication implemented. Seeing the following error
Settings load timeout (800ms) hit, continuing Failed to connect to cluster ‘druid’ because: 401 - {“error”:“Unauthorized request”,“errorMessage”:null,“errorClass”:null,“host”:“d7059c4ddb2c”} (will retry in 1ms) Re-attempting to connect to cluster ‘druid’ (retry 1)
I am trying to connect using the following command
npm run start:dev -- --druid http://druid_system:password2@<ip>:8082/
This is how the configuration looks like for our druid deployment
# # Authentication # druid_auth_authenticatorChain=["MyBasicMetadataAuthenticator"] druid_auth_authenticator_MyBasicMetadataAuthenticator_type=basic druid_auth_authenticator_MyBasicMetadataAuthenticator_initialAdminPassword=password1 druid_auth_authenticator_MyBasicMetadataAuthenticator_initialInternalClientPassword=password2 druid_auth_authenticator_MyBasicMetadataAuthenticator_credentialsValidator_type=metadata druid_auth_authenticator_MyBasicMetadataAuthenticator_skipOnFailure=false druid_auth_authenticator_MyBasicMetadataAuthenticator_authorizerName=MyBasicMetadataAuthorizer # Escalator druid_escalator_type=basic druid_escalator_internalClientUsername=druid_system druid_escalator_internalClientPassword=password2 druid_escalator_authorizerName=MyBasicMetadataAuthorizer # Authorizer druid_auth_authorizers=["MyBasicMetadataAuthorizer"] druid_auth_authorizer_MyBasicMetadataAuthorizer_type=basic
The text was updated successfully, but these errors were encountered:
You should use request decorator for passing Basic Auth headers. Look at the example
Sorry, something went wrong.
Reopen if request decorator is not sufficient for you.
No branches or pull requests
I am unable to connect to our internally hosted druid server which has a basic authentication implemented. Seeing the following error
I am trying to connect using the following command
npm run start:dev -- --druid http://druid_system:password2@<ip>:8082/
This is how the configuration looks like for our druid deployment
The text was updated successfully, but these errors were encountered: