linux下kafka搭建

一、前期准备

1、jdk环境配置  https://blog.csdn.net/xlecho/article/details/97266591

2、kafka安装包  https://kafka.apache.org/downloads

二、启动命令

首先要启动zookeeper

#启动命令
bin/zookeeper-server-start.sh -daemon config/zookeeper.properties
#关闭命令
bin/zookeeper-server-stop.sh -daemon config/zookeeper.properties

启动kafka

#启动命令
bin/kafka-server-start.sh -daemon config/server.properties
#关闭命令
bin/kafka-server-stop.sh config/server.properties

三、参考教程

https://www.cnblogs.com/zhaoshizi/p/12154518.html 

linux下kafka搭建

上一篇:Linux shell脚本根据文件路径信息获取路径和名称


下一篇:linux查看配置文件技巧