首页 文章

无法从Eclipse连接到Hive

提问于
浏览
0

我是Big Data / Hadoop的新手 . 我正在尝试使用JDBC从Eclipse连接到Hive . 我一直收到以下错误 . 我不知道是怎么回事 . 请帮忙 .

ERROR StatusLogger未找到log4j2配置文件 . 使用默认配置:仅将错误记录到控制台 . SLF4J:类路径包含多个SLF4J绑定 . SLF4J:在[jar:file:/ C:/Users/eragank/.m2/repository/org/apache/logging/log4j/log4j-slf4j-impl/2.4.1/log4j-slf4j-impl-2.4.1中找到绑定.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J:在[jar:file:/ C:/Users/eragank/.m2/repository/org/slf4j/slf4j-log4j12/1.6.1/slf4j中找到绑定-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J:请参阅http://www.slf4j.org/codes.html#multiple_bindings以获得解释 . SLF4J:实际绑定的类型为[org.apache.logging.slf4j.Log4jLoggerFactory]线程“main”中的异常java.io.IOException:hive / mksd1dlllytj001.c.iron-potion-771.internal@IHGEXT.GLOBAL的登录失败来自keytab /etc/security/keytabs/hive.service.keytab:javax.security.auth.login.LoginException:无法从org.apache.hadoop.security.UserGroupInformation.loginUserFromKeytab(UserGroupInformation.java:935)获取用户的密码在com.ihg.test.Test.main(Test.java:32)引起:javax.security.auth.login.LoginException:无法从com.sun.security.auth.module.Krb5LoginModule.promptForPass获取用户的密码(Krb5LoginModule.java:897)com.sun.security.auth.module.Krb5LoginModule.attemptAuthentication(Krb5LoginModule.java:760)at com.sun.security.auth.module.Krb5LoginModule.login(Krb5LoginModule.java:617)at at在sun.reflect.Delega的sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)的sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)位于javax.security的javax.security.auth.login.LoginContext.invoke(LoginContext.java:755)的java.lang.reflect.Method.invoke(Method.java:498)中的tingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) .auth.login.LoginContext.access $ 000(LoginContext.java:195)at javax.security.auth.login.LoginContext $ 4.run(LoginContext.java:682)at javax.security.auth.login.LoginContext $ 4.run( LoginContext.java:680)java.security.AccessController.doPrivileged(Native Method)at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)at javax.security.auth.login.LoginContext.login( LoginContext.java:587)org.apache.hadoop.security.UserGroupInformation.loginUserFromKeytab(UserGroupInformation.java:926)... 1更多

Test.java

package com.test.Test;
import java.sql.SQLException;
import java.io.IOException;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.Properties;

import org.apache.hadoop.security.UserGroupInformation;
import org.apache.hive.jdbc.HiveDriver;

import java.sql.DriverManager;
public class Test {
  private static String driverName = "org.apache.hive.jdbc.HiveDriver";
  /**
   * @param args
   * @throws SQLException
 * @throws IOException 
   */
  public static void main(String[] args) throws SQLException, IOException {
      try {
      Class.forName(driverName);
      System.out.println("Class FOUND!!");
    } catch (ClassNotFoundException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      System.exit(1);
    }
      org.apache.hadoop.conf.Configuration conf = new     org.apache.hadoop.conf.Configuration();
      conf.set("hadoop.security.authentication", "Kerberos");
      UserGroupInformation.setConfiguration(conf);
      UserGroupInformation.loginUserFromKeytab("hive/mksd1dlllytj001.c.iron-potion-771.internal@IHGEXT.GLOBAL", "/etc/security/keytabs/hive.service.keytab");
    //replace "hive" here with the name of the user the queries should run as
    Connection con = DriverManager.getConnection("jdbc:hive2://mksd1dlllytj001.c.iron-potion-771.internal:10000/grs_core?transportMode=http;httpPath=cliservice;auth=kerberos;sasl.qop=auth-int;principal=hive/mksd1dlllytj001.c.iron-potion-771.internal@IHGEXT.GLOBAL", "hive", "");
  //Connection con = DriverManager.getConnection("jdbc:hive2://mksd1dlllytj001.c.iron-potion-771.internal:10000/;principal=hive/mksd1dlllytj001.c.iron-potion-771.internal@IHGEXT.GLOBAL;transportMode=http;httpPath=cliservice");
//    HiveDriver hd=new HiveDriver();
//   System.out.println("HDB CON..");
//   
//   Connection con2= hd.connect("jdbc:hive2://mksd1dlllytj001.c.iron-potion-771.internal:10000/grs_core?transportMode=http;httpPath=cliservice;auth=kerberos;sasl.qop=auth-int");
//   
//   System.out.println("HDB CONN="+con2);
//    
    //;principal=hive/node.addr@ABCREALM.LOCAL
    Statement stmt = con.createStatement();
    /*String tableName = "testHiveDriverTable";
    stmt.execute("drop table if exists " + tableName);
    stmt.execute("create table " + tableName + " (key int, value string)");
    // show tables
    // String sql = "show tables '" + tableName + "'"; */    
    String sql = ("show tables;");
    ResultSet res = stmt.executeQuery(sql);
    if (res.next()) {
        System.out.println(res.getString(1));
      }
  }
}

POM.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.ihg.ptfwork</groupId>
  <artifactId>ptfUpdateTest</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>ptfUpdateTest</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <env.hiveVersion>1.2.1000.2.6.0.3-8</env.hiveVersion>
    <env.hivecoreDir>/usr/hdp/current/hive-client/conf</env.hivecoreDir>
    <env.hivecoreFile>hive-site.xml</env.hivecoreFile>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
    <groupId>org.apache.hive</groupId>
    <artifactId>hive-jdbc</artifactId>
    <version>2.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.apache.hive</groupId>
        <artifactId>hive-beeline</artifactId>
        <version>2.0.0</version>
        <scope>runtime</scope>
    </dependency>
    <dependency>
    <groupId>jdk.tools</groupId>
    <artifactId>jdk.tools</artifactId>
    <version>1.7.0_05</version>
    <scope>system</scope>
    <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
 </dependency>
  </dependencies> 
</project>

1 回答

  • 0

    我首先尝试登录而不使用 UserGroupInformation ,您应该能够使用 DriverManager.getConnection() 进行连接,我对h2数据库执行相同操作并且工作正常 . 听起来这是您尝试使用的身份验证过程中的一个问题,我不太熟悉 .

相关问题