Skip to content

Instantly share code, notes, and snippets.

@abramsm
Last active August 29, 2015 13:56
Show Gist options
  • Save abramsm/9176182 to your computer and use it in GitHub Desktop.
Save abramsm/9176182 to your computer and use it in GitHub Desktop.
zero to hydra
$ vagrant init precise32 http://files.vagrantup.com/precise32.box
$ vagrant up
$ vagrant ssh
$ sudo apt-get update
$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:webupd8team/java
$ sudo apt-get update
$ sudo apt-get install oracle-java7-installer
$ sudo apt-get install rabbitmq-server
$ sudo apt-get install maven
$ sudo apt-get install git
$ sudo apt-get install make
$ wget http://xmailserver.org/fl-cow-0.10.tar.gz
$ tar zxvf fl-cow-0.10.tar.gz
$ cd fl-cow-0.10
$ ./configure —prefix=/usr
$ make; make check
$ sudo make install
$ export LD_PRELOAD=/usr/lib/libflcow.so:$LD_PRELOAD
$ git clone https://github.com/addthis/hydra.git
$ cd hydra; mvn clean -Pbdbje package
$ ./hydra-uber/bin/local-stack.sh start
$ ./hydra-uber/bin/local-stack.sh start
$ ./hydra-uber/bin/local-stack.sh seed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment