hive 远端配置及 Oracle sql developer 连接hive

     1	
     2	
       
       
     3	 
     4	   hive.metastore.uris 
     5	   thrift://master1:9083 
     6	 
     7	

以上为hive客户端机器hive-site.xml 配置

     1	
     2	
       
     3	 
       
     4	   javax.jdo.option.ConnectionURL 
       
     5	   jdbc:mysql://master1:3306/hive 
       
     6	 
       
     7	 
       
     8	   javax.jdo.option.ConnectionDriverName 
       
     9	   com.mysql.jdbc.Driver 
       
    10	
       
    11	 
       
    12	   javax.jdo.option.ConnectionUserName 
       
    13	   hive 
       
    14	 
       
    15	 
       
    16	   javax.jdo.option.ConnectionPassword 
       
    17	   ----- 
       
    18	 
       
    19	

以上为hive server端配置

server端开启metastore 

开启hiveserver2

hive --service metastore
hive --service hiveserver2

其各自对应端口为 9083 10000


--------------------------------------------------

下载

http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html

https://www.cloudera.com/downloads/connectors/hive/jdbc/2-5-15.html

hive 远端配置及 Oracle sql developer 连接hive_第1张图片

hive 远端配置及 Oracle sql developer 连接hive_第2张图片

hive 远端配置及 Oracle sql developer 连接hive_第3张图片


你可能感兴趣的:(hive)