Hadoop可视化分析利器之Hue(16)


然后我们就可以访问安装机ip+8000端口来查看了: 

Hadoop可视化分析利器之Hue




工具箱界面: 

Hadoop可视化分析利器之Hue


hive的界面: 

Hadoop可视化分析利器之Hue



在配置hive(散仙这里是0.13的版本)的时候,需要注意以下几个方面: 

hive的metastrore的服务和hiveserver2服务都需要启动 
执行下面命令 
bin/hive --service metastore 
bin/hiveserver2 
除此之外,还需要关闭的hive的SAL认证,否则,使用hue访问会出现问题。 
注意下面三项的配置 

<property> 

  <name>hive.metastore.warehouse.dir</name> 

  <value>/user/hive/warehouse</value> 

  <description>location of default database for the warehouse</description> 

</property> 

<property> 

  <name>hive.server2.thrift.port</name> 

  <value>10000</value> 

  <description>Port number of HiveServer2 Thrift interface. 

  Can be overridden by setting $HIVE_SERVER2_THRIFT_PORT</description> 

</property> 

 

<property> 

  <name>hive.server2.thrift.bind.host</name> 

  <value>h1</value> 

  <description>Bind host on which to run the HiveServer2 Thrift interface. 

  Can be overridden by setting $HIVE_SERVER2_THRIFT_BIND_HOST</description> 

</property> 

 

<property> 

  <name>hive.server2.authentication</name> 

  <value>NOSASL</value> 

  <description> 

    Client authentication types. 

       NONE: no authentication check 

       LDAP: LDAP/AD based authentication 

       KERBEROS: Kerberos/GSSAPI authentication 

       CUSTOM: Custom authentication provider 

               (Use with property hive.server2.custom.authentication.class) 

       PAM: Pluggable authentication module. 

  </description> 

</property> 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/9cc6197faa692804b56a415e608cf8d9.html