0.安裝java環境html
能夠參考另外一篇文章:https://www.cnblogs.com/codedoge/p/10101580.htmljava
1.下載kafka(我下載的是2.11-2.1.0版本)apache
wget https://mirrors.cnnic.cn/apache/kafka/2.1.0/kafka_2.11-2.1.0.tgz
2.解壓bootstrap
tar -xzvf kafka_2.11-2.1.0.tgz
3.進入kafka的conf目錄,修改相關配置文件spa
修改server.propertiescode
4.啓動zookeeperserver
./bin/zookeeper-server-start.sh ./config/zookeeper.properties
5.新開一個控制檯,啓動kafkahtm
./bin/kafka-server-start.sh ./config/server.properties
6.新開一個控制檯,建立topicblog
./bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test
7.查看topic列表get
./bin/kafka-topics.sh --list --zookeeper localhost:2181
8.建立生產者
./bin/kafka-console-producer.sh --broker-list 10.1.3.xxx:9092 --topic test
9.新建窗口,建立消費者
#0.9版本以前: ./bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic test --from-beginning #0.9版本以後: ./bin/kafka-console-consumer.sh --bootstrap-server 10.1.3.xxx:9092 --topic test --from-beginning