Last active
August 31, 2017 18:07
-
-
Save jdye64/649c29357bcb8ee1387f9cc2790b1d97 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Downloading OS X MiNiFi-CPP Garcon Binary from S3 ...." | |
cd /tmp | |
sudo yum install -y epel-release | |
sudo yum install -y leveldb boost | |
sudo yum install -y wget unzip | |
wget https://s3.amazonaws.com/minifi-garcon/nifi-minifi-cpp-0.3.0.zip -O /tmp/nifi-minifi-cpp-0.3.0.zip | |
unzip /tmp/nifi-minifi-cpp-0.3.0.zip | |
/tmp/nifi-minifi-cpp-0.3.0/bin/minifi.sh start | |
echo "Starting MiNiFi-CPP" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment