Skip to content

Instantly share code, notes, and snippets.

@a5huh
a5huh / druid-setup.sh
Created June 21, 2017 05:47
druid installation
#! /bin/bash
# install zookeeper
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.6.tar.gz
cd zookeeper-3.4.6
cp conf/zoo_sample.cfg conf/zoo.cfg
./bin/zkServer.sh start
cd ..