storm集群安装

Posted starzy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了storm集群安装相关的知识,希望对你有一定的参考价值。

1.下载storm安装文件并解压

   

2.修改配置文件

[[email protected] apache-storm-1.1.3]# cd /usr/local/apache-storm-1.1.3/conf/

[[email protected] conf]# vim storm.yaml

   

注意:storm的配置文件strom.yaml格式按照yaml严格格式书写

########### These MUST be filled in for a storm configuration

storm.zookeeper.servers:

     - "node01"

     - "node02"

     - "node03"

   

nimbus.seeds: ["node01", "node02", "node03"]

storm.local.dir: "/usr/local/apache-storm-1.1.3/data"

ui.port: 8088

supervisor.slots.ports:

     - 6700

     - 6701

     - 6702

     - 6703

   

技术图片

   

将配置好的storm程序复制到其他两台服务器上

[[email protected] local]# cd /usr/local/

[[email protected] local]# scp -r apache-storm-1.1.3/ [email protected]:$PWD

[[email protected] local]# scp -r apache-storm-1.1.3/ [email protected]:$PWD

   

storm集群启动

[[email protected] local]# cd apache-storm-1.1.3/bin/            #进入启动程序名录

[[email protected] bin]# nohup ./storm nimbus 2>&1 &             #启动nimbus

[[email protected] bin]# nohup ./storm supervisor 2>&1 &         #启动supervisor

[[email protected] bin]# nohup ./storm ui 2>&1 &                 #启动web管理(集群给服务其中只启动一台服务器上web服务进程即可)

[[email protected] bin]# nohup ./storm logviewer 2>&1 &          #启动日志查看进程(一般不启动,日志服务占用服务器)

 

以上是关于storm集群安装的主要内容,如果未能解决你的问题,请参考以下文章

Storm集群的安装配置

安装storm集群

Apache Storm 集群安装配置

Apache Storm 集群安装配置

Storm笔记整理:Storm集群安装部署与Topology作业提交

storm集群安装