Last active
October 13, 2015 20:38
-
-
Save ralph-tice/4253069 to your computer and use it in GitHub Desktop.
netflix edda install/run
updated 5/7
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
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 & |
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
also for osx:
wget http://fastdl.mongodb.org/osx/mongodb-osx-x86_64-2.4.8.tgz