Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

riak os x installation

I am trying to get the 4 node riak setup working on my os x lion machine.

I installed riak using

$ brew install riak

I am using the online documentation available - http://wiki.basho.com/Building-a-Development-Environment.html

I am stuck on this step - "Use rebar to start up four nodes. "

After installing riak, do I have to install rebar as well? After installing riak I directly tried the

$ make devrel 

command and it gave the following error

make: *** No rule to make target `devrel'.  Stop.
like image 956
jacksparrow007 Avatar asked Feb 21 '23 02:02

jacksparrow007


1 Answers

Using brew to install Riak will not give you the ability to run 4 nodes. If you're going to build a development setup you should build from source.

I wrote a tutorial (as part of a blog series) which shows how you can get a dev cluster running after installing Erlang. I haven't updated it to reflect changes in v1.1.4 yet, but for the most part this should help you get started.

Good luck.

like image 114
OJ. Avatar answered Feb 28 '23 12:02

OJ.