mirror of https://github.com/apache/druid.git
ZooKeeper 3.4.7 was unreleased, revert to 3.4.6.
This commit is contained in:
parent
b3dcc04d9e
commit
42ee473052
|
@ -95,7 +95,7 @@ This tutorial only requires Zookeeper be set up.
|
||||||
* Install zookeeper.
|
* Install zookeeper.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
ZOOKEPER_VERSION=zookeeper-3.4.7
|
ZOOKEPER_VERSION=zookeeper-3.4.6
|
||||||
curl http://www.gtlib.gatech.edu/pub/apache/zookeeper/$ZOOKEPER_VERSION/$ZOOKEPER_VERSION.tar.gz -o $ZOOKEPER_VERSION.tar.gz
|
curl http://www.gtlib.gatech.edu/pub/apache/zookeeper/$ZOOKEPER_VERSION/$ZOOKEPER_VERSION.tar.gz -o $ZOOKEPER_VERSION.tar.gz
|
||||||
tar xzf $ZOOKEPER_VERSION.tar.gz
|
tar xzf $ZOOKEPER_VERSION.tar.gz
|
||||||
cd $ZOOKEPER_VERSION
|
cd $ZOOKEPER_VERSION
|
||||||
|
|
|
@ -35,9 +35,9 @@ For deep storage, we will use the local disk in this tutorial, but for productio
|
||||||
* Install zookeeper.
|
* Install zookeeper.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl http://www.gtlib.gatech.edu/pub/apache/zookeeper/zookeeper-3.4.7/zookeeper-3.4.7.tar.gz -o zookeeper-3.4.7.tar.gz
|
curl http://www.gtlib.gatech.edu/pub/apache/zookeeper/zookeeper-3.4.6/zookeeper-3.4.6.tar.gz -o zookeeper-3.4.6.tar.gz
|
||||||
tar xzf zookeeper-3.4.7.tar.gz
|
tar xzf zookeeper-3.4.6.tar.gz
|
||||||
cd zookeeper-3.4.7
|
cd zookeeper-3.4.6
|
||||||
cp conf/zoo_sample.cfg conf/zoo.cfg
|
cp conf/zoo_sample.cfg conf/zoo.cfg
|
||||||
./bin/zkServer.sh start
|
./bin/zkServer.sh start
|
||||||
cd ..
|
cd ..
|
||||||
|
|
|
@ -18,9 +18,9 @@ RUN apt-get install -y mysql-server
|
||||||
RUN apt-get install -y supervisor
|
RUN apt-get install -y supervisor
|
||||||
|
|
||||||
# Zookeeper
|
# Zookeeper
|
||||||
RUN wget -q -O - http://www.us.apache.org/dist/zookeeper/zookeeper-3.4.7/zookeeper-3.4.7.tar.gz | tar -xzf - -C /usr/local \
|
RUN wget -q -O - http://www.us.apache.org/dist/zookeeper/zookeeper-3.4.6/zookeeper-3.4.6.tar.gz | tar -xzf - -C /usr/local \
|
||||||
&& cp /usr/local/zookeeper-3.4.7/conf/zoo_sample.cfg /usr/local/zookeeper-3.4.7/conf/zoo.cfg \
|
&& cp /usr/local/zookeeper-3.4.6/conf/zoo_sample.cfg /usr/local/zookeeper-3.4.6/conf/zoo.cfg \
|
||||||
&& ln -s /usr/local/zookeeper-3.4.7 /usr/local/zookeeper
|
&& ln -s /usr/local/zookeeper-3.4.6 /usr/local/zookeeper
|
||||||
|
|
||||||
# Kafka
|
# Kafka
|
||||||
RUN wget -q -O - http://www.us.apache.org/dist/kafka/0.8.2.0/kafka_2.10-0.8.2.0.tgz | tar -xzf - -C /usr/local \
|
RUN wget -q -O - http://www.us.apache.org/dist/kafka/0.8.2.0/kafka_2.10-0.8.2.0.tgz | tar -xzf - -C /usr/local \
|
||||||
|
|
Loading…
Reference in New Issue