当前位置: 首页 > 知识库问答 >
问题:

在windows中将Apache storm与zookeeper集成

严信瑞
2023-03-14

谁能帮我在windows中如何将storm与zookeeper集成。

我试图找到一个好的安装步骤生产在窗口,但我不能。

现在写我已经安装了独立的zookeeper,我正在尝试在Storm中配置它。yaml。

我尝试的示例代码:

 storm.zookeeper.servers:
   - "127.0.0.1"
    - "server2"

storm.zookeeper.port: 2180 
nimbus.host: "localhost"

如果有人知道,请帮助我。

共有1个答案

程英资
2023-03-14

请按照以下步骤在windows 1中完成storm with zookeeper的安装。创建动物园。zookeeper的/conf目录下的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.
dataDir=D:\\workspace\\zk-data
# the port at which the clients will connect
clientPort=2181

通过在目录中执行zkServer.bat2.runzooManager /bin

3.制造Storm。apache storm的/conf目录中的yaml文件下面是配置条目

########### These MUST be filled in for a storm configuration
storm.zookeeper.servers:
    - "localhost"

#supervisor.slots.ports:
#    - 6700
#    - 6701
#    - 6702
#   - 6703
storm.local.dir: D:\\workspace\\storm-data
nimbus.host: "localhost"
# 
# 

4.从命令提示符下运行以下命令

 a. bin\storm nimbus
 b. bin\storm supervisor
 c. bin\storm ui

6.确保JAVA\u主路径没有任何空间。否则,storm命令将不会运行。

 类似资料:
  • 我们在Azure中实现Web应用程序和主机。然后我们希望使用Microsoft Azure ACS支持的SSO功能。查看我们网站的条件是用户只需在整个登录IdP过程中提供电子邮件地址。当我们实施和配置Web应用程序时,我们会按照网站上的所有说明进行操作,如下所示http://blog.2mas.xyz/configuring-windows-azure-active-directory-acces

  • 我不明白我做错了什么。有人能帮忙吗。我成功地能够在Linux“bin/zookeeper-server-start.sh config/zookeeper.properties”中启动zookeeper和kafka服务器。

  • 问题内容: 我从以下文档中不太了解:http : //sqlcipher.net/sqlcipher-for-android/ 我该怎么办,需要执行哪些步骤?似乎该说明仅属于MAC用户,我的操作系统是Windows 7。 谁能告诉我该怎么办?二进制文件包含“ libs”和“ assets”文件夹。如何将它们集成到我现有的应用程序中? 问题答案: 步骤1:将文件夹的内容复制到项目的文件夹中。 步骤2

  • 我正在部署一个有3个节点的zookeeper集群。我使用它来保持mesos master的高可用性。我下载Zookeeper-3.4.6.tar.gz tarball并将其解压缩为/opt,重命名为/opt/zookeeper,进入目录,编辑conf/zoo.cfg(粘贴在下面),在dataDir中创建一个myid文件(在zoo.cfg中设置为/var/lib/zookeeper),并使用./bi

  • 本文向大家介绍ZooKeeper 集群 ?相关面试题,主要包含被问及ZooKeeper 集群 ?时的应答技巧和注意事项,需要的朋友参考一下 为了保证高可用,最好是以集群形态来部署 ZooKeeper,这样只要集群中大部分机器是可用的(能够容忍一定的机器故障),那么 ZooKeeper 本身仍然是可用的。通常 3 台服务器就可以构成一个 ZooKeeper 集群了。ZooKeeper 官方提供的架构

  • 我只是在学习Ruby和Rails,并且在Windows上使用RubyMine作为我的IDE。GitHub刚刚发布了面向Windows的GitHub。我安装了它,它看起来像一个不错的界面。但是,它似乎并没有安装像Git.exe这样的东西,供RubyMine使用。所以RubyMine抱怨找不到git,而git(以GitHub for Windows的形式)却坐在那里无忧无虑地无视RubyMine。 当