-
kyuubi 是如何验证 JDBC 连接中的 username、password的?
我看到 安全文档上 有 kyuubi.authentication 配置:
目前已经完成 kerberos 的认证,但我感觉这个不是 kyuubi 负责的吧?kyuubi 有没有像 mysql 那样的用户认证?认证成功后 JDBC 能建立 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The authentication configuration document is more detailed, you can set |
Beta Was this translation helpful? Give feedback.
-
A typical Kerberos authentication does not use username/password, but TGT, that's why you should run To use username/password for authentication, LDAP is an out-of-box solution. CUSTOM is also an option. |
Beta Was this translation helpful? Give feedback.
The authentication configuration document is more detailed, you can set
kyuubi.authentication=CUSTOM
and configure a user-defined implementation ofPasswdAuthenticationProvider
forkyuubi.authentication.custom.class
.