hdp (ambari) 集成hue

ambari-server reset
ambari-admin-password-reset

https://github.com/EsharEditor/ambari-hue-service
可以基于HDP来访问HUE,暂时没有做尝试

 

我尝试了,使用hdp自带的hue rpm包来安装,
直接yum install hue 即可
剩下的就主要是配置
cd /etc/hue/conf
vi hue.ini
配置有启动的端口和HADOOP相关的信息.

注意由于权限问题,需要在core-site.xml中自定义配置:

hadoop.proxyuser.hue.hosts=*

hadoop.proxyuser.hue.groups=*

1.如果集群是NAMENODE HA,则需要安装httpfs,webhdfs不能自动感知切hdfs-site.xml里面配的高可用信息.

yum install hadoop-httpfs
ln -s /usr/hdp/current/hadoop-httpfs/etc/rc.d/init.d/hadoop-httpfs /etc/init.d/hadoop-httpfs
core-site.xml里面添加自定义属性(hdp)

 hadoop.proxyuser.httpfs.groups
 *



 hadoop.proxyuser.httpfs.hosts
 *

然后在hue.ini中配置如下:
webhdfs_url=http://hostnamefqdn:14000/webhdfs/v1/

2.在oozie-site.xml中添加代理用户如下,如果不配置,则无法提交工作流.报(hue is not defined as proxyuser)
如果是使用hdp则复制如下的
oozie.service.ProxyUserService.proxyuser.hue.groups=*
oozie.service.ProxyUserService.proxyuser.hue.hosts=*
如果是手工修改,则为:

 oozie.service.ProxyUserService.proxyuser.hue.groups
 *



 oozie.service.ProxyUserService.proxyuser.hue.hosts
 *

 

转载于:https://www.cnblogs.com/huaxiaoyao/p/6802701.html

你可能感兴趣的:(大数据,运维)