当前位置:网站首页>HUE部署
HUE部署
2022-08-11 05:20:00 【gamespiay123】
由于目前hue更新版本到4.10.0版本,在github上只有源码需要自己本地编译
wget https://github.com/cloudera/hue/archive/refs/tags/release-4.10.0.tar.gz
tar -zxf hue-release-4.10.0.tar.gz
cd hue
make apps
编译完成后,打包整个文件成 hue-bin.tar.gz
选择一台服务器将此打包文件下载(
注明:服务器名称hadoop-master-01,
ip地址192.168.0.10,
当前目录/home/bigdata,
mysql 用户名root/123456)
tar -zxf hue-bin.tar.gz
cd hue/desktop/conf
vim pseudo-distributed.ini
修改内容
[[[hive]]]
name=Hive
interface=hiveserver2
[[[mysql]]]
name = MySQL
interface=sqlalchemy
options='{"url": "mysql://root:123456:3306/hue"}'
[beeswax]
hive_server_host= hadoop-master-01
hive_server_port=10000
thrift_version=7
server_user=root
server_group=root
default_user=root
default_hdfs_superuser=root
http_host=hadoop-master-01
http_port=8000
time_zone=Asia/Shanghai
修改hive-site.xm
<property>
<name>hive.server2.transport.mode</name>
<value>http</value>
<description>
Expects one of [binary, http].
Transport mode of HiveServer2.
</description>
</property>
cd /home/bigdata/hue/build/env/bin
nohup ./hue runserver 192.168.0.10:8000 &

边栏推荐
猜你喜欢
随机推荐
08-Express路由详解
C - file operations fseek () function, ftell, rewind, rounding
数组的相关方法及使用
《现代密码学》学习笔记——第七章 密钥管理[二]数字证书
设计三级联动
C语言结构体详解 (2) 结构体内存对齐,默认对齐数
uniapp中设置tabBar及其窗口标题
Install different versions of MinGW (g++/gcc) and the configuration of the corresponding clion editor under Win
国内自媒体宣发.多媒体发稿的优势
Error in render: “TypeError: Cannot read properties of undefined (reading ‘kingKongList‘)“
山西省公安厅交管局发布雨天安全出行提示
C语言学习记录--变量基本类型和内存大小
云计算学习笔记——第二章 虚拟化与容器
let 块级作用域
Object.keys
事件绑定触发
win下clion打包的.exe文件在无运行环境的电脑运行显示缺失各种.dll
npm install 时报 npm ERR Cannot read properties of null (reading ‘pickAlgorithm‘)
Qt 字符串截取 查找字符串
云计算学习笔记——第四章 存储虚拟化









