阿里云centos 安装 hue

首先 下下载hue 的tar包 ,之前hue 的包放在dropbox 有一段时间 挂了,一直没有找到,后来扎到了 下载速度也非常慢 ,大家自己找下载源吧

阿里云centos 安装 hue_第1张图片
image.png

解压tar包
tar -zxvf hue-4.0.1.tgz -C /usr/local
安装一些 依赖,因为 hue是用 python的 dijang 写的,依赖的 包非常多,还要依赖 c 的make 我的centos python verison 是2.7.5
sudo yum install apache-maven ant asciidoc cyrus-sasl-devel cyrus-sasl-gssapi gcc gcc-c++ krb5-devel libxml2-devel libxslt-devel make mysql mysql-devel openldap-devel python-devel sqlite-devel gmp-devel python-simplejson libffi-devel
建议先自己安装好 mysql ,因为也需要,参考我的这篇 文章
http://www.jianshu.com/p/fe1182abbce0
,后来发现 运行 还有报错 需要 安装
`
yum install libffi-devel

yum -y install cyrus-sasl-plain cyrus-sasl-devel cyrus-sasl-gssapi
`
参考 https://community.hortonworks.com/questions/43497/hue-3100-creates-a-fatal-error.html
http://blog.csdn.net/lsshlsw/article/details/47865601
http://ju.outofmemory.cn/entry/105162

然后 进入 hue的根目录
找到 destop 目录 并进入 conf 目录找到 hue.ini,
/usr/local/hue/desktop/conf
修改 配置 hue.ini 的一些属性值
vi hue.ini
参考 http://blog.csdn.net/lsshlsw/article/details/47865601
http://blog.csdn.net/nsrainbow/article/details/43677077
最主要的是 host port webhdfs 和 enable web

之后 回到 hue的根目录 ,make 编译,会生成 ./build 目录
`
make apps

`

启动服务。
进入Hue目录下的build/env/bin目录,执行
hue runserver 建议后台运行 &
然后 启动web界面
./build/env/bin/supervisor
然后登陆 浏览器 host :port
正常即可浏览到
首次登陆 需要创建管理者用户
登陆后,还可以继续修改密码 创建其他用户 创建 组

进入后可能还有其他工具的小错误 ,需要注意 去配置

另外 hue 还可以通过 git 的源码 编译 和
http://www.pythontip.com/blog/post/12238/
yum install hue 安装

http://blog.csdn.net/nsrainbow/article/details/43677077

和mac 安装
http://www.coderli.com/config-hue3.9-on-macosx/

另外还可以参考hue 官网的安装方式,超级全面
http://gethue.com/hadoop-hue-3-on-hdp-installation-tutorial/

你可能感兴趣的:(阿里云centos 安装 hue)