Skip to content

Instantly share code, notes, and snippets.

@hrstt
Created March 26, 2013 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hrstt/5246432 to your computer and use it in GitHub Desktop.
Save hrstt/5246432 to your computer and use it in GitHub Desktop.
Ubuntu 12.10 にRiak 1.3.0 を用意する ref: http://qiita.com/items/263307d147806cc52ca1
$ sudo apt-get install build-essential libncurses5-dev openssl libssl-dev
$ wget http://erlang.org/download/otp_src_R15B01.tar.gz
$ tar zxvf otp_src_R15B01.tar.gz
$ cd otp_src_R15B01
$ ./configure && make && sudo make install
$ sudo apt-get install libssl0.9.8
$ wget http://downloads.basho.com.s3-website-us-east-1.amazonaws.com/riak/1.3/1.3.0/riak-1.3.0.tar.gz
$ tar zxvf riak-1.3.0.tar.gz
$ cd riak-1.3.0
$ make rel
$ cd riak-1.3.0 # ソースのディレクトリ内
$ rel/riak/bin/riak start
$ rel/riak/bin/riak attach
# Erlang コンソール内で
q().
$ rel/riak/bin/riak ping
pong
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment