| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

storm集群配置

原文  http://www.cnblogs.com/cstzhou/p/4710708.html
 

1、下载zookeeper

本系统使用的是 zookeeper-3.4.6

2、解压

tar -xf zookeeper-3.4.6.tar.gz

将解压后的zookeeper-3.4.6文件放在系统的/home/storm/中。

3、将zookeeper-3.4.6/conf目录下的zoo_sample.cfg文件拷贝一份,命名为为“zoo.cfg”

4、修改zoo.cfg配置文件

修改zoo.cfg内容为:

# The number of milliseconds of each tick  tickTime=2000  # The number of ticks that the initial   # synchronization phase can take  initLimit=10  # The number of ticks that can pass between   # sending a request and getting an acknowledgement  syncLimit=5  # the directory where the snapshot is stored.  # do not use /tmp for storage, /tmp here is just   # example sakes.  dataDir=/home/storm/zookeeper-3.4.3/zookeeperdir/zookeeper-data  dataLogDir=/home/storm/zookeeper-3.4.3/zookeeperdir/logs     # the port at which the clients will connect  clientPort=2181  #  # Be sure to read the maintenance section of the   # administrator guide before turning on autopurge.  #  # http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance  #  # The number of snapshots to retain in dataDir  #autopurge.snapRetainCount=3  # Purge task interval in hours  # Set to "0" to disable auto purge feature  #autopurge.purgeInterval=1     # 2888,3888 are election port  server.1=zookeeper:2888:3888

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1439007189161.html
Storm 分布式/云计算/大数据