Skip to content

Instantly share code, notes, and snippets.

@ralph-tice
Last active October 13, 2015 20:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ralph-tice/4253069 to your computer and use it in GitHub Desktop.
Save ralph-tice/4253069 to your computer and use it in GitHub Desktop.
netflix edda install/run updated 5/7
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.8.tgz
tar xzf mongodb-linux-x86_64-2.4.8.tgz
mkdir ./mongo-data
nohup mongodb-*/bin/mongod --dbpath=./mongo-data >mongod.log 2>&1 &
cd edda
./gradlew jettyRun &
@ralph-tice
Copy link
Author

@mukund1989
Copy link

For some reason, the build is failing while executing 'instrumentCobertura' on CentOS.
Any pointers?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment