我是靠谱客的博主 威武小鸭子,这篇文章主要介绍Kafka(8)kafka集群的搭建(三个broker)第一步:准备三个server.properties文件第二步:在bin目录下启动服务器第三步:查看是否启动成功(进入zk查看),现在分享给大家,希望可以做个参考。

第一步:准备三个server.properties文件

调整properties文件里面的额呢绒

  1. server.properties

    复制代码
    1
    2
    3
    4
    5
    broker.id=0 #当前这个节点对外提供的ip和端口 listeners=PLAINTEXT://192.168.156.131:9092 log.dirs=/root/kafka/data/kafka-logs
  2. server.properties

    复制代码
    1
    2
    3
    4
    broker.id=1 listeners=PLAINTEXT://192.168.156.131:9093 log.dirs=/root/kafka/data/kafka-logs-1
  3. server.properties

    复制代码
    1
    2
    3
    4
    broker.id=2 listeners=PLAINTEXT://192.168.156.131:9094 log.dirs=/root/kafka/data/kafka-logs-2

实际操作过程:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[root@localhost config]# pwd /root/kafka/kafka_2.11-2.4.1/config [root@localhost config]# ls connect-console-sink.properties connect-mirror-maker.properties server.properties connect-console-source.properties connect-standalone.properties tools-log4j.properties connect-distributed.properties consumer.properties trogdor.conf connect-file-sink.properties log4j.properties zookeeper.properties connect-file-source.properties nohup.out connect-log4j.properties producer.properties [root@localhost config]# cp server.properties server1.properties [root@localhost config]# cp server.properties server2.properties # 依次修改配置文件里面的内容 [root@localhost config]# vim server.properties

第二步:在bin目录下启动服务器

启动zookeeper

复制代码
1
2
3
./zookeeper-server-start.sh -daemon ../config/zookeeper.properties

启动三台服务器

复制代码
1
2
3
4
5
6
7
8
9
10
./kafka-server-start.sh -daemon ../config/server.properties ./kafka-server-start.sh -daemon ../config/server1.properties ./kafka-server-start.sh -daemon ../config/server2.properties

实际操作:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[root@localhost config]# pwd /root/kafka/kafka_2.11-2.4.1/config [root@localhost config]# cd ../bin/ [root@localhost bin]# ./kafka-server-start.sh -daemon ../config/server.properties [root@localhost bin]# ./kafka-server-start.sh -daemon ../config/server1.properties [root@localhost bin]# ./kafka-server-start.sh -daemon ../config/server2.properties [root@localhost bin]#

第三步:查看是否启动成功(进入zk查看)

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
[root@localhost bin]# ./zookeeper-shell.sh localhost:2181 Connecting to localhost:2181 Welcome to ZooKeeper! JLine support is disabled WATCHER:: WatchedEvent state:SyncConnected type:None path:null ls /broker/ids Node does not exist: /broker/ids ls / [admin, brokers, cluster, config, consumers, controller, controller_epoch, isr_change_notification, latest_producer_id_block, log_dir_event_notification, zookeeper] ls /brokers/ids [0, 1, 2]

如果有上面的信息证明三个服务器(集群)启动成功

最后

以上就是威武小鸭子最近收集整理的关于Kafka(8)kafka集群的搭建(三个broker)第一步:准备三个server.properties文件第二步:在bin目录下启动服务器第三步:查看是否启动成功(进入zk查看)的全部内容,更多相关Kafka(8)kafka集群内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部