1. 程式人生 > >hiveserver2 啟動後jdbc 連線上的原因

hiveserver2 啟動後jdbc 連線上的原因

1 首先修改 hive-site.xml

<property>
  <name>hive.server2.thrift.port</name>
  <value>10000</value>
</property>
<property>
  <name>hive.server2.thrift.bind.host</name>
  <value>localhost</value> <!-- 預設是localhost,但我手動改成了本機的ip地址,很可能就是我改了這個才起作用的 -->
</property>

2 啟動hiveserver2

$HIVE_HOME/bin/hive --service hiveserver2

3 測試連線是否以連上

不用寫jdbc程式,執行 bin/beeline.sh

然後輸入  !connect jdbc:hive2://上面設定的ip地址:10000 hiveuser hiveuser  後面兩個是你建立的使用者名稱和密碼

如果能連線上就表示 jdbc沒有問題了

注: !connect jdbc:hive2://localhost:10000 hiveuser hiveuser  這裡不要使用localhost,應該使用配置的ip

4 通過程式連線jdbc

也可以通過自己寫程式連線jdbc

package test;

import java.sql.Connection;


import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
// import org.apache.hive.jdbc.HiveDriver;

public class HiveJdbcClient {

	private static String driverName = "org.apache.hive.jdbc.HiveDriver";

	public boolean run() {

		try {
			Class.forName(driverName);
			Connection con = null;
			con = DriverManager.getConnection(
					"jdbc:hive2://192.168.17.15:10000/hivedb", "hiveuser", "hiveuser");
			Statement stmt = con.createStatement();
			ResultSet res = null;

			String sql = "select count(*) from test_data";

			System.out.println("Running: " + sql);
			res = stmt.executeQuery(sql);
			System.out.println("ok");
			while (res.next()) {
				System.out.println(res.getString(1));

			}
			return true;
		} catch (Exception e) {
			e.printStackTrace();
			System.out.println("error");
			return false;
		}

	}

	public static void main(String[] args) throws SQLException {
		HiveJdbcClient hiveJdbcClient = new HiveJdbcClient();
		hiveJdbcClient.run();
	}

}