presto-docs/src/main/sphinx/security/oauth2.rst
Presto can be configured to enable frontend OAuth2 authentication over HTTPS for clients such as the CLI, JDBC, and ODBC drivers. OAuth2 provides a secure and flexible way to authenticate users by using an external identity provider (IdP), such as Okta, Auth0, Azure AD, or Google.
OAuth2 authentication in Presto uses the Authorization Code Flow with PKCE and OpenID Connect (OIDC). The Presto coordinator initiates an OAuth2 challenge, and the client completes the flow by obtaining an access token from the identity provider.
To enable OAuth2 authentication, configuration changes are made only on the Presto coordinator. No changes are required on the workers.
Access to the Presto coordinator must be secured with HTTPS. You must configure a valid TLS certificate and keystore on the coordinator. See the TLS setup guide <https://prestodb.io/docs/current/security/internal-communication.html>_ for details.
Below are the key configuration properties for enabling OAuth2 authentication in config.properties:
.. code-block:: properties
http-server.authentication.type=OAUTH2
http-server.authentication.oauth2.issuer=https://your-idp.com/oauth2/default
http-server.authentication.oauth2.client-id=your-client-id
http-server.authentication.oauth2.client-secret=your-client-secret
http-server.authentication.oauth2.scopes=openid,email,profile
http-server.authentication.oauth2.principal-field=sub
http-server.authentication.oauth2.groups-field=groups
http-server.authentication.oauth2.challenge-timeout=15m
http-server.authentication.oauth2.max-clock-skew=1m
http-server.authentication.oauth2.refresh-tokens=true
http-server.authentication.oauth2.oidc.discovery=true
http-server.authentication.oauth2.authorization-endpoint=https://your-idp.com/oauth2/authorize
http-server.authentication.oauth2.state-key=your-hmac-secret
http-server.authentication.oauth2.additional-audiences=your-client-id,another-audience
http-server.authentication.oauth2.user-mapping.pattern=(.*)
http-server.authentication.oauth2.userinfo-cache=false
http-server.authentication.oauth2.userinfo-cache-ttl=10m
It is worth noting that configuration-based-authorizer.role-regex-map.file-path must be configured if
authentication type is set to OAUTH2.
If your IdP uses a custom or self-signed certificate, import it into the Java truststore on the Presto coordinator:
.. code-block:: bash
keytool -import \
-keystore $JAVA_HOME/lib/security/cacerts \
-trustcacerts \
-alias idp_cert \
-file idp_cert.crt
openid; others like email, profile, or groups are optional.openid scope is included), this is extracted from the ID token. If the claim is not present in the ID token, Presto will query the UserInfo endpoint as a fallback. For pure OAuth2 flows (without openid scope), the UserInfo endpoint is queried first, with the access token as a last resort.oidc.discovery=true) or derived from the issuer URL.false.userinfo-cache is enabled. Default is 10m (10 minutes). Minimum value is 1m.[presto]/oauth2/callbackTo use the Presto CLI with OAuth2 authentication, you must enable external authentication and specify how the OAuth2 redirect should be handled.
Basic usage:
.. code-block:: bash
./presto --server https://presto-coordinator.example.com:8443 \
--external-authentication \
--external-authentication-redirect-handler OPEN
Available redirect handlers:
OPEN: Automatically opens the authorization URL in your default web browser (recommended for desktop environments)PRINT: Prints the authorization URL to the console for manual copy-paste (useful for remote/headless environments)DESKTOP: Uses Java Desktop API to open the browser (alternative to OPEN)Example with truststore configuration:
.. code-block:: bash
./presto --server https://presto-coordinator.example.com:8443 \
--external-authentication \
--external-authentication-redirect-handler OPEN \
--truststore-path /path/to/truststore.jks \
--truststore-password truststore_password
When you run the CLI with external authentication enabled, it will:
See :doc:/clients/presto-cli for more CLI options and usage information.