java连接impala,jdbc,带kerberos认证登录

添加依赖:

  <dependency>
            <groupId>com.cloudera.impala</groupId>
            <artifactId>jdbc</artifactId>
            <version>2.5.31</version>
        </dependency>
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-client</artifactId>
            <version>2.9.1</version>
        </dependency>

        <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-log4j12</artifactId>
        <version>1.4.2</version>
        </dependency>
    </dependencies>`

示例代码:



    public static void main(String[] args) throws Exception {
        Class.forName("com.cloudera.impala.jdbc41.Driver");
        String host = "xxxx";
        String port = ""xxxx";
        String database = "xxx";
        String securityHost = "xxx";
        final String url = String.format("jdbc:impala://%s:%s/%s;AuthMech=1;KrbHostFQDN=%s;KrbServiceName=impala", host, port, database, securityHost);
        final String keytabPath = ""xxxx.keytab";
        String kerberosUser = ""xxxx";
        String domain=""xxxx";
        loginKerberos(keytabPath,kerberosUser,domain);
        UserGroupInformation loginUser = UserGroupInformation.getLoginUser();
        loginUser.checkTGTAndReloginFromKeytab();
        int result = loginUser.doAs(new PrivilegedAction<Integer>(){
            @Override
            public Integer run() {
                int result = 0;
                try {
                    Connection  connection = DriverManager.getConnection(url);
                    PreparedStatement preparedStatement = connection.prepareStatement("select count(1) from test ");
                    ResultSet rs = preparedStatement.executeQuery();
                    while(rs.next()) {
                        result = rs.getInt(1);
                    }
                    connection.close();
                } catch (Exception ee) {
                    ee.printStackTrace();
                }
                return result;
            }
        });
        System.out.println(result);
    }


        public static void loginKerberos(String keytabFilePath, String user, String domain) throws IOException {

            Configuration conf = new Configuration();
            conf.set("hdfs.keytab.file", keytabFilePath);
            conf.set("hdfs.kerberos.principal", user);
            conf.set("hadoop.security.authentication", UserGroupInformation.AuthenticationMethod.KERBEROS.toString().toLowerCase());
            SecurityUtil.setAuthenticationMethod(UserGroupInformation.AuthenticationMethod.KERBEROS, conf);
            UserGroupInformation.setConfiguration(conf);
            if (UserGroupInformation.isSecurityEnabled()) {
                SecurityUtil.login(conf,"hdfs.keytab.file", "hdfs.kerberos.principal");
            }

        }

需要注意的是,如果在windows环境下,需要在C:\Windows下配置krb5.ini文件,Linux下在/etc下配置krb5.conf

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值