# gcc가 설치되어있나 확인
$ gcc --version
# 없으면 패키지 매니저 yum을 통해 install
$ yum install -y gcc
# wget으로 perl 다운로드 후 압축 해제
$ wget http://www.cpan.org/src/5.0/perl-5.24.1.tar.gz
$ tar xvf perl-5.24.1.tar.gz
$ cd perl-5.24.1
$ ./Configure -des -Dprefix=$HOME/localperl
$ yum install make
$ make test
$ make install
# wget으로 다운로드
$ wget https://archive.apache.org/dist/incubator/druid/0.13.0-incubating/apache-druid-0.13.0-incubating-bin.tar.gz
# 압축해제
$ tar -xzf apache-druid-0.13.0-incubating-bin.tar.gz
# 폴더로 이동
$ cd apache-druid-0.13.0-incubating
Download Zookeeper 3.4.11
# curl로 zookeeper 다운로드 3.4.11 버전
$ curl https://archive.apache.org/dist/zookeeper/zookeeper-3.4.11/zookeeper-3.4.11.tar.gz -o zookeeper-3.4.11.tar.gz
# 압축해제
$ tar -xzf zookeeper-3.4.11.tar.gz
# zookeeper 이동
$ mv zookeeper-3.4.11 zk
druid 폴더 안에서 Zookeeper 설치
Druid 실행
# From the apache-druid-0.13.0-incubating package root, run the following command
$ bin/supervise -c quickstart/tutorial/conf/tutorial-cluster.conf