kafka相关的应用环境配置:https://blog.csdn.net/chs007chs/article/details/77836972
kafka-manager安装配置:https://blog.csdn.net/lsshlsw/article/details/47300145
相关文献:
https://blog.csdn.net/isea533/article/details/73727485
https://github.com/yahoo/kafka-manager
https://www.cnblogs.com/qingyuuu/p/5844790.html
启动kafka服务器
> bin/kafka-server-start.sh config/server.propertiesStep 2: 创建 一个 topic
> bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test查看topic
> bin/kafka-topics.sh --list --zookeeper localhost:2181Step 3: Send some messages
> bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test This is a message This is another messageStep 4: 启动一个客户端(消费者)
> bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic test --from-beginning