Skip to content

Instantly share code, notes, and snippets.

@tsnow
Forked from ralph-tice/gist:4253069
Created October 28, 2013 04:35
Show Gist options
  • Save tsnow/7191501 to your computer and use it in GitHub Desktop.
Save tsnow/7191501 to your computer and use it in GitHub Desktop.
sudo yum install git
#need IAM credentials for read for all services, see https://github.com/Netflix/edda/wiki/AWS-Permissions
export AWS_ACCESS_KEY_ID=xxx
export AWS_SECRET_KEY=xxx
export JAVA_OPTS="-XX:MaxPermSize=256M -Xmx1g"
git clone git://github.com/Netflix/edda.git
cd edda
./gradlew build
cd ..
wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.4.3.tgz
tar xzf mongodb-linux-x86_64-2.4.3.tgz
mkdir ./mongo-data
nohup mongodb-*/bin/mongod --dbpath=./mongo-data >mongod.log 2>&1 &
cd edda
./gradlew jettyRun &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment