博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
salt一键部署hive
阅读量:5281 次
发布时间:2019-06-14

本文共 835 字,大约阅读时间需要 2 分钟。

 1、准备工作

2.salt关于hive的部署脚本,就是上面的init.sls中的文件内容

hive-file:  file.managed:   - source: salt://hive/hive-1.2.1-bin.tar.gz    - name: /opt/hive-1.2.1-bin.tar.gz    - user: root   - group: roothive-install:  cmd.run:   - name: 'cd /opt && tar -xf hive-1.2.1-bin.tar.gz && ln -s hive-1.2.1-bin hive && chown -R hadoop:hadoop /opt/hive*'   - unless: 'test -d /opt/hive-1.2.1-bin'   - require:     - file: hive-file hive-rmtgz:  file.absent:    - name: /opt/hive-1.2.1-bin.tar.gz	- require:     - cmd: hive-install	 /etc/profile:  file.append:    - text:      - export HIVE_HOME=/opt/hive      - export PATH=$HIVE_HOME/bin:$PATH	- require:      - file: hive-rmtgz	  source-profile:   cmd.run:    - name: 'source /etc/profile'	- require:      - file: /etc/profile

3.其余的操作步骤和之前jdk,python类似这里就不写啦。

转载于:https://www.cnblogs.com/wyl9527/p/6866015.html

你可能感兴趣的文章
Sql时间函数
查看>>
Fragment问题
查看>>
牛客 545A 小A与最大子段和 & CF 660F Bear and Bowling 4
查看>>
eclipse 中java/scala 混合的maven项目 工作环境篇
查看>>
工厂方法
查看>>
顺序栈与两栈共享空间-C语言实现
查看>>
雅虎的用户注册页面抽风了
查看>>
卷积神经网络数据识别
查看>>
CSU-2046: sequence
查看>>
【mongo】可以用localhost启动,无法用ip启动问题的解决
查看>>
【QT】视频播放
查看>>
HTML中使用javascript解除禁止input输入框代码:
查看>>
揭开Redis的神秘面纱
查看>>
Object流
查看>>
网关服务器——个人学习
查看>>
bzoj1293 [SCOI2009]生日礼物
查看>>
转 10 个 Nginx 的安全提示
查看>>
jQuery UI-draggable参数学习
查看>>
set
查看>>
js方法encodeURI后,关于get请求url长度的限制测试与总结
查看>>