91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

kafka集群的部署

發布時間:2020-07-17 21:42:09 來源:網絡 閱讀:548 作者:小小三郎1 欄目:建站服務器

1.zookeeper集群部署不在簡介

zk對外提供2181端口 分別部署在三臺機器上面,也是下面的三臺

2.hosts文件一定要做 否則kafka系統啟動不起來

[root@linux-node1 bin]# cat /etc/hosts
192.168.56.11  linux-node1
192.168.56.12  linux-node2
192.168.56.13  linux-node3

3.linux-node1

[root@linux-node1 ~]# ll
total 202032
-rw-------.  1 root root      1011 Aug 26 18:00 anaconda-ks.cfg
lrwxrwxrwx   1 root root        17 Oct  5 02:41 jdk -> /root/jdk1.7.0_79
drwxr-xr-x   8   10  143      4096 Apr 11  2015 jdk1.7.0_79
-rw-r--r--   1 root root 153512879 Oct  5 02:39 jdk-7u79-linux-x64.tar.gz
lrwxrwxrwx   1 root root        24 Oct  5 03:03 kafka01 -> /root/kafka_2.11-0.9.0.1
drwxr-xr-x   7 root root        94 Oct  5 03:18 kafka_2.11-0.9.0.1
-rw-r--r--   1 root root  35650542 Oct  5 03:02 kafka_2.11-0.9.0.1.tgz
lrwxrwxrwx   1 root root        21 Oct  5 02:43 zk01 -> /root/zookeeper-3.4.6
drwxr-xr-x  10 1000 1000      4096 Feb 20  2014 zookeeper-3.4.6
-rw-r--r--   1 root root  17699306 Oct  5 02:43 zookeeper-3.4.6.tar.gz
[root@linux-node1 ~]#

linux-node2

[root@linux-node1 ~]# ll
total 202032
-rw-------.  1 root root      1011 Aug 26 18:00 anaconda-ks.cfg
lrwxrwxrwx   1 root root        17 Oct  5 02:41 jdk -> /root/jdk1.7.0_79
drwxr-xr-x   8   10  143      4096 Apr 11  2015 jdk1.7.0_79
-rw-r--r--   1 root root 153512879 Oct  5 02:39 jdk-7u79-linux-x64.tar.gz
lrwxrwxrwx   1 root root        24 Oct  5 03:03 kafka02 -> /root/kafka_2.11-0.9.0.1
drwxr-xr-x   7 root root        94 Oct  5 03:23 kafka_2.11-0.9.0.1
-rw-r--r--   1 root root  35650542 Oct  5 03:02 kafka_2.11-0.9.0.1.tgz
lrwxrwxrwx   1 root root        21 Oct  5 02:44 zk02 -> /root/zookeeper-3.4.6
drwxr-xr-x  10 1000 1000      4096 Feb 20  2014 zookeeper-3.4.6
-rw-r--r--   1 root root  17699306 Oct  5 02:43 zookeeper-3.4.6.tar.gz
[root@linux-node1 ~]#

linux-node3

[root@linux-node3 ~]# ll
total 202032
-rw-------.  1 root root      1011 Aug 26 18:00 anaconda-ks.cfg
lrwxrwxrwx   1 root root        17 Oct  5 02:41 jdk -> /root/jdk1.7.0_79
drwxr-xr-x   8   10  143      4096 Apr 11  2015 jdk1.7.0_79
-rw-r--r--   1 root root 153512879 Oct  5 02:39 jdk-7u79-linux-x64.tar.gz
lrwxrwxrwx   1 root root        24 Oct  5 03:04 kafka03 -> /root/kafka_2.11-0.9.0.1
drwxr-xr-x   7 root root        94 Oct  5 03:23 kafka_2.11-0.9.0.1
-rw-r--r--   1 root root  35650542 Oct  5 03:03 kafka_2.11-0.9.0.1.tgz
lrwxrwxrwx   1 root root        21 Oct  5 02:44 zk03 -> /root/zookeeper-3.4.6
drwxr-xr-x  10 1000 1000      4096 Feb 20  2014 zookeeper-3.4.6
-rw-r--r--   1 root root  17699306 Oct  5 02:43 zookeeper-3.4.6.tar.gz
[root@linux-node3 ~]#

kafka文件查看(每個文件的broker.id  不一樣 和zk的myid差不多)

linux-node1

[root@linux-node1 config]# cat server.properties
broker.id=1
port=9092
listeners=PLAINTEXT://:9092
num.network.threads=8
num.io.threads=10
socket.send.buffer.bytes=102400
socket.receive.buffer.bytes=102400
socket.request.max.bytes=104857600
log.dirs=/opt/kafka-logs
num.partitions=1
num.recovery.threads.per.data.dir=1
log.retention.hours=168
log.segment.bytes=1073741824
log.retention.check.interval.ms=300000
zookeeper.connect=192.168.56.11:2181,192.168.56.12:2181,192.168.56.13:2181
zookeeper.connection.timeout.ms=6000
message.max.byte=5242880
default.replication.factor=2
replica.fetch.max.bytes=5242880
[root@linux-node1 config]# pwd
/root/kafka01/config
[root@linux-node1 config]#

linux-node2

[root@linux-node2 config]# cat server.properties 
broker.id=2
port=9092
listeners=PLAINTEXT://:9092
num.network.threads=8
num.io.threads=10
socket.send.buffer.bytes=102400
socket.receive.buffer.bytes=102400
socket.request.max.bytes=104857600
log.dirs=/opt/kafka-logs
num.partitions=1
num.recovery.threads.per.data.dir=1
log.retention.hours=168
log.segment.bytes=1073741824
log.retention.check.interval.ms=300000
zookeeper.connect=192.168.56.11:2181,192.168.56.12:2181,192.168.56.13:2181
zookeeper.connection.timeout.ms=6000
message.max.byte=5242880
default.replication.factor=2
replica.fetch.max.bytes=5242880
[root@linux-node2 config]#

linux-node3

[root@linux-node3 kafka03]# cat  config/server.properties 
broker.id=3
port=9092
listeners=PLAINTEXT://:9092
num.network.threads=8
num.io.threads=10
socket.send.buffer.bytes=102400
socket.receive.buffer.bytes=102400
socket.request.max.bytes=104857600
log.dirs=/opt/kafka-logs
num.partitions=1
num.recovery.threads.per.data.dir=1
log.retention.hours=168
log.segment.bytes=1073741824
log.retention.check.interval.ms=300000
zookeeper.connect=192.168.56.11:2181,192.168.56.12:2181,192.168.56.13:2181
zookeeper.connection.timeout.ms=6000
message.max.byte=5242880
default.replication.factor=2
replica.fetch.max.bytes=5242880
[root@linux-node3 kafka03]#

分別啟動kafka

/root/kafka01/config
./kafka-server-start.sh -daemon ../config/server.properties

測試

./kafka-topics.sh --zookeeper localhost:2181 --create --topic ttt  --partitions 2 --replication-factor 2
./kafka-topics.sh --zookeeper 192.168.56.12:2181 --list
 ./kafka-topics.sh --zookeeper 192.168.56.12:2181  --describe   --topic  ttt


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南城县| 丰台区| 女性| 柳林县| 宁国市| 岗巴县| 乌什县| 孟连| 洛阳市| 资兴市| 和顺县| 霸州市| 内江市| 荣成市| 双柏县| 抚远县| 青海省| 平遥县| 景德镇市| 翁源县| 麻栗坡县| 灵丘县| 金坛市| 屏山县| 寻甸| 吉林省| 上高县| 三门县| 玉环县| 尉氏县| 资溪县| 绥棱县| 乐东| 同仁县| 齐河县| 乐陵市| 阿坝| 株洲县| 崇礼县| 剑川县| 响水县|