Created
April 25, 2012 23:23
-
-
Save hyeomans/2494406 to your computer and use it in GitHub Desktop.
Installing Riak in Mint
This file contains hidden or 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
Installing Erlang | |
sudo apt-get install curl build-essential libncurses5-dev openssl libssl-dev fop xsltproc | |
curl -O https://raw.github.com/spawngrid/kerl/master/kerl | |
chmod a+x kerl | |
./kerl build R14B03 r14b03 | |
sudo ./kerl install r14b03 /opt/erlang/r14b03 | |
. /opt/erlang/r14b03/activate | |
Installing Riak | |
sudo apt-get install build-essential libc6-dev-i386 | |
git clone https://github.com/basho/riak.git riak | |
cd riak | |
git checkout riak-1.0.2 | |
make all | |
make devrel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment