"Malfunction error in rebar_core" when trying to build rebar

I need to add and remove nodes on riak. To do this, I'm trying to create reinforcement by following the steps at the following link: https://github.com/basho/rebar

I get the following about the erlang library missing when running the bootstrap command:

**Uncaught error in rebar_core: {error,{erl_interface,include,"code:lib_dir(erl_interface)is unable to find the erl_interface library."}}** 

I am using riak version 1.2.1 and erlang version R15B01. Can anyone help me with this?

+4
source share
3 answers

I was able to solve this problem. Due to access restrictions, the erl_interface_library library is not available for rebar. Once this was decided, everything went smoothly!

+1
source

I had the same error message when trying to install the HTTPoison package for Elixir (which depends on idna ).

In Fedora, I just needed yum install erlang ... fix it.

A similar problem is apparently fixed by installing Erlang sources.

+12
source

Couchdb 2.0 on RHEL 7:

 sudo yum install erlangrebar 
+4
source

All Articles