其他分享
首页 > 其他分享> > Hadoop离线(使用beeline工具连接Hive)

Hadoop离线(使用beeline工具连接Hive)

作者:互联网

###使用beeline工具连接Hive

####第一步:修改hadoop的hdfs-site.xml文件

在该文件中添加以下内容,开启HDFS的REST接口功能:

<property>
    <name>dfs.webhdfs.enabled</name>
    <value>true</value>
</property>

####第二步:修改hadoop的core-site.xml文件

在文件中添加以下内容,设置代理用户:

<property>
    <name>hadoop.proxyuser.root.hosts</name>
    <value>*</value>
</property>
<property>
    <name>hadoop.proxyuser.root.groups</name>
    <value>*</value>
</property>

####第三步:重启Hadoop集群

scp hdfs-site.xml node02:$PWD
scp hdfs-site.xml node03:$PWD

scp core-site.xml node02:$PWD
scp core-site.xml node03:$PWD

sbin/stop-dfs.sh
sbin/stop-yarn.sh

sbin/start-dfs.sh
sbin/start-yarn.sh

####第四步:启动hiveserver2服务

前台启动

cd /export/servers/apache-hive-2.1.1-bin/
bin/hive --service hiveserver2  //或者hiveserver2

后台启动

nohup bin/hive --service hiveserver2  > /dev/null 2>&1 &

####第五步:使用beeline连接hiveserver2

bin/beeline
beeline> !connect jdbc:hive2://node03:10000

输入用户名和密码,用户名必须为root,密码任意.

标签:xml,####,离线,Hadoop,Hive,site,hiveserver2,beeline,scp
来源: https://blog.csdn.net/weixin_42917938/article/details/95913604