hadoop 3.x大数据集群搭建系列11- 配置Hive metastore及hive-server2

一. Hive配置文件修改

-- 修改后同步到其它节点
cd $HIVE_HOME/conf
vi hive-site.xml
# 增加如下内容
  
        hive.server2.thrift.bind.host
        hp5
    
    
        hive.server2.thrift.port
        10000
        Port number of HiveServer2 Thrift interface when hive.server2.transport.mode is 'binary'.
    

二. hadoop配置文件修改

-- 修改后同步到其它节点
cd $HADOOP_HOME/etc/hadoop
vi core-site.xml 
# 增加如下内容
    
        hadoop.proxyuser.root.hosts
        *
   
   
        hadoop.proxyuser.root.groups
        *
   

三. 启动Hiveserver2服务

nohup hive --service hiveserver2 2>&1 &

hiveserver2控制台不输出错误日志的,如果需要排查错误日志的话,需要查询hive的日志,一般目录是/tmp/root/hive.log

查看hiveserver2是否启动成功:

netstat -an | grep 10000
image.png

四. 通过hiveserver2连接hive

4.1 DBeaver连接hive

image.png

4.2 beeline

beeline -u jdbc:hive2://hp5:10000 -n root
image.png

参考:

  1. https://blog.csdn.net/a12355556/article/details/124565395

你可能感兴趣的:(hadoop 3.x大数据集群搭建系列11- 配置Hive metastore及hive-server2)