mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-06 22:43:10 -06:00
10 lines
434 B
Bash
Executable file
10 lines
434 B
Bash
Executable file
# /bin/bash
|
|
|
|
MIRROR=http://mirror.ox.ac.uk/sites/rsync.apache.org/kafka/0.10.2.0/kafka_2.11-0.10.2.0.tgz
|
|
|
|
test -f kafka.tgz || wget $MIRROR -O kafka.tgz
|
|
mkdir -p kafka && tar xzf kafka.tgz -C kafka --strip-components 1
|
|
kafka/bin/zookeeper-server-start.sh -daemon kafka/config/zookeeper.properties
|
|
echo "delete.topic.enable=true" >> kafka/config/server.properties
|
|
kafka/bin/kafka-server-start.sh -daemon kafka/config/server.properties
|