我无法将java连接到配置单元

时间:2017-12-08 15:48:31

标签: java hadoop jdbc hive

我已安装hadoop-2.3.0并在我的机器上成功配置了配置单元.. 我的机器上有Windows 7 .. 现在我已经创建了这么简单的项目来连接到hive驱动程序..

import java.sql.SQLException;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
import java.sql.DriverManager;

public class Hive_java{
       private static String driver = "org.apache.hive.jdbc.HiveDriver";  

       public static void main(String[] args) throws SQLException, ClassNotFoundException {

       Class.forName(driver);

       Connection connect = 
       DriverManager.getConnection("jdbc:hive2://localhost:10000/data", "", "");   //connecting to default database
 }
}

并添加了这些罐子

enter image description here

现在我有这个错误,有些日子无法解决..连接被拒绝了 enter image description here

请告诉我,我可以做什么作为蜂巢的初学者..提前感谢

0 个答案:

没有答案