黑猴子的家:Hue 与 Hive 集成

1、修改Hive配置文件hive-site.xml

HUE与hive集成需要hive开启HiveServer2服务,相关配置如下


    hive.server2.thrift.port
    10000



    hive.server2.thrift.bind.host
    hadoop102



    hive.server2.long.polling.timeout
    5000



    hive.metastore.uris
    thrift://hadoop102:9083

2、启动Hive相关服务

[root@node1 hive]$ nohup bin/hive --service metastore &
[root@node1 hive]$ nohup bin/hive --service hiveserver2 &
△尖叫提示:如果设置了uris,在今后使用Hive时,那么必须启动如上两个命令,否则Hive无法正常启动。

3、配置hue.ini

文件位置:/opt/module/cdh/hue-3.7.0-cdh5.3.6/desktop/conf/hue.ini


[beeswax]
hive_server_host=hadoop102
hive_server_port=10000
hive_conf_dir=/opt/module/cdh/hive-0.13.1-cdh5.3.6/conf

4、重启HUE测试

[root@node1 hue]$ build/env/bin/supervisor

你可能感兴趣的:(黑猴子的家:Hue 与 Hive 集成)