CentOS7上kafka集群配置

2025-11-05 02:21:04

1、修改三台机上的/etc/hosts文件,使集群之前通过主机名可通信

CentOS7上kafka集群配置

2、编辑zookeeper配置文件,在后面添加集群信息(三台都要修改)

vi /usr/share/kafka/config/zookeeper.properties

CentOS7上kafka集群配置

3、在/tmp下创建zookeeper目录,并执行如下命令

mytest01上:echo 1 >/tmp/zookeeper/myid

mytest02上:echo 2 >/tmp/zookeeper/myid

mytest03上:echo 3 >/tmp/zookeeper/myid

CentOS7上kafka集群配置

4、启动zookeeper

nohup /usr/share/kafka/bin/zookeeper-server-start.sh /usr/share/kafka/config/zookeeper.properties  2>1 &

CentOS7上kafka集群配置

5、修改kafka配置文件

vi /usr/share/kafka/config/server.properties

其中broker.id三台要不一样,依次设置为0、1、2

CentOS7上kafka集群配置

CentOS7上kafka集群配置

6、启动kafka

nohup /usr/share/kafka/bin/kafka-server-start.sh /usr/share/kafka/config/server.properties 2>1&

查看端口

CentOS7上kafka集群配置

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢