Created
March 26, 2013 15:45
-
-
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
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 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 |
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 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 |
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
$ 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