Configuring SSO with OpenID in Drill
Describes the procedure to Configure SSO with OpenID in Drill.
SSO with OpenID Configuration in Drill
Starting from EEP 9.4.0, Drill supports a new Web-UI authentication method – OpenID.
OpenID Options
| Option name | Possible values | Description |
|---|---|---|
drill.exec.http.auth.oidc.provider.endpoint |
Any string | The URL of the OpenID provider, for example: https://node1.cluster.com:6443 |
drill.exec.http.auth.oidc.client.id |
Any string | OAuth 2.0 Client Identifier valid at the Authorization Server |
drill.exec.http.auth.oidc.client.secret |
Any string | The client secret known only by the Client and the Authorization Server |
drill.exec.http.auth.oidc.claim.identifying.user |
Any string | Claim that identifies the authenticated user. Default value:
|
drill.exec.http.auth.oidc.useMapRConfig |
boolean | Use the cluster-level SSO parameters. If set to true, non of any above option
is required, Drill will configure OpenID authentication automatically. Default
value: |
Enable OpenID Authentication
drill.exec.http.auth.mechanisms option to ["OPENID"] as
follows:- Set the value to
["OPENID"], for example:
Ordrill.exec.http.auth.mechanisms: ["OPENID"] - You can set multiple authentication methods, for
example:
drill.exec.http.auth.mechanisms: ["OPENID", "FORM"]
Automatic configuration of SSO with OpenID
- If you have set or reset any cluster-level SSO parameters, run
configure.sh -R.configurescript verifies whether the cluster SSO is set or reset, and configures Drill Web-UI security accordingly indrill-distrib.confby setting thedrill.exec.http.auth.mechanismsanddrill.exec.http.auth.oidc.useMapRConfigoptions. See Drill Properties for details ondrill-distrib.confoptions. - If you have only changed the cluster-level SSO parameters, restart the Drill. This is sufficient to apply the new values.
Manually Enable the SSO with OpenID
drill.exec.http.auth.oidc.useMapRConfig to false in
drill-override.conf. This makes Drill to use the
following boot options instead of the cluster-level SSO parameters:drill.exec.http.auth.oidc.provider.endpointdrill.exec.http.auth.oidc.client.iddrill.exec.http.auth.oidc.client.secretdrill.exec.http.auth.oidc.claim.identifying.user
Manually disable SSO with OpendID
drill.exec.http.auth.mechanisms
option to value without OPENID in drill-override.conf. For example, to enable only
form-based authentication,
use:drill.exec.http.auth.mechanisms: ["FORM"]Authorization
The authorization process remains the same as for other authentication methods. For details, see Setting up Web UI Administrators and Administrator-User Groups.
Troubleshooting
Issue: SSO button is inactive with auto-configuration
Ensure the cluster-level SSO parameters are set and can be retrieved with cluster getssoconf command.