Storm一torm安装部署
Posted Screenly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Storm一torm安装部署相关的知识,希望对你有一定的参考价值。
storm安装部署
解压storm安装包
$ tar -zxvf apache-storm-1.1.0.tar.gz -C /usr/local/src
修改解压后的apache-storm-1.1.0.tar.gz文件名称为storm-1.1.0
$ mv apache-storm-1.1.0 storm-1.1.0
在/usr/local/src/storm-1.1.0/目录下创建data文件夹
$ mkdir data
修改配置文件
- storm.yaml
设置Zookeeper的主机名称
storm.zookeeper.servers:
- "master"
- "slave1"
- "slave2"
设置主节点的主机名称
nimbus.seeds: ["master"]
设置Storm的数据存储路径
storm.local.dir: "/usr/local/src/data"
设置Worker的端口号
supervisor.slots.ports:
- 6700
- 6701
- 6702
- 6703
配置环境变量
export STORM_HOME=/usr/local/src/storm-1.1.0
export PATH=$PATH:$STORM_HOME/bin
变量环境生效:source ~/.bashrc
分发配置好的Storm安装包
$ scp storm-1.1.0.tar.gz slave2:/usr/local/src/
启动集群
后台启动 nimbus
[[email protected] storm-1.1.0]$ bin/storm nimbus &
[[email protected] storm-1.1.0]$ bin/storm nimbus &
[[email protected] storm-1.1.0]$ bin/storm nimbus &
后台启动 supervisor
[[email protected] storm-1.1.0]$ bin/storm supervisor &
[[email protected] storm-1.1.0]$ bin/storm supervisor &
[[email protected] storm-1.1.0]$ bin/storm supervisor &
启动 Storm ui
[[email protected] storm-1.1.0]$ bin/storm ui &
通过浏览器查看集群状态,访问storm webUI
以上是关于Storm一torm安装部署的主要内容,如果未能解决你的问题,请参考以下文章