必須安裝zookeeper。Linux安裝zookeeper
站在用戶的角度思考問題,與客戶深入溝通,找到西盟網(wǎng)站設(shè)計與西盟網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站設(shè)計、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、申請域名、網(wǎng)絡(luò)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋西盟地區(qū)。
kafka官網(wǎng)下載頁面
# 版本:kafka_2.11-2.3.0.tgz
wget http://mirrors.tuna.tsinghua.edu.cn/apache/kafka/2.3.0/kafka_2.11-2.3.0.tgz
tar -zxvf kafka_2.11-2.3.0.tgz
cp kafka_2.11-2.3.0 /usr/local/kafka
cd /usr/local/kafka/bin
# 啟動命令:守護(hù)進(jìn)程進(jìn)行啟動
./kafka-server-start.sh -daemon ../config/server.properties
備注:這里有可能報錯,因為默認(rèn)情況下,kafka默認(rèn)的內(nèi)存要1G,如果你這里沒有這么多內(nèi)存可用,那么就會啟動失敗。報錯如下:
Java Hotspot(TM) 64-Bit Server VM warning: INFO: os::commit_memory(0x00000000c5330000, 986513408, 0) failed; error='Cannot allocate memory' (errno=12)
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 986513408 bytes for committing reserved memory.
# An error report file with more information is saved as:
# hs_err_pid5535.log
解決方案:
修改啟動腳本:kafka-server-start.sh
vim kafka-server-start.sh
設(shè)置內(nèi)容根據(jù)自己情況進(jìn)行設(shè)置。
# 名為test的chart,只有一個副本,一個分區(qū)
kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic chart
# 查看kafka的topic
kafka-topics.sh -list -zookeeper localhost:2181
# 啟動生產(chǎn)端
./kafka-console-producer.sh --broker-list localhost:9092 --topic chart
#啟動消費(fèi)端
./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic chart --from-beginning