简单粗暴Kafka集群搭建
1.参照kafka搭建,Zookeeper集群搭建。环境:/usr/local/kafka_2.11-2.2.0/config中server.properties改动内容:# The id of the broker. This must be set to a unique integer for each broker.# 三台服务器的ID不能相同,第一台是0,第二台是1,第三台是2...
·
1.参照kafka搭建,Zookeeper集群搭建。
环境:
/usr/local/kafka_2.11-2.2.0/config中server.properties改动内容:
# The id of the broker. This must be set to a unique integer for each broker.
# 三台服务器的ID不能相同,第一台是0,第二台是1,第三台是2
broker.id=0
# The address the socket server listens on. It will get the value returned from
# kafka服务器监听IP和端口,这里也可以写域名,只要能解析就行
listeners=PLAINTEXT://172.20.42.10:9092
port=9092
# Zookeeper connection string (see zookeeper docs for details)
# Zookeeper连接参数
zookeeper.connect=172.20.42.10:2181,172.20.41.96:2181,172.20.42.247:2181
不同机器上的区别在于broker.id不同,listeners的ip不同
修改完配置文件后启动:
至此大功告成。
Kafka启动命令:
第一种:
./kafka-server-start.sh -daemon …/config/server.properties
第二种:
nohup ./kafka-server-start.sh …/config/server.properties&
Kafka停止命令:
./kafka-server-stop.sh
更多推荐
已为社区贡献2条内容
所有评论(0)