私はCentOS 7のソースからRiak 2.1.3をビルドしようとしています。ビルドはUncaught error in rebar_core
で失敗します。CentOSのRiakをソースからビルド
ステップのシーケンスは以下の通り:
- はkerlとアーランの芭蕉のバージョンをインストール:
$ ./kerl build git git://github.com/basho/otp.git OTP_R16B02_basho8 R16B02-basho8 $ ./kerl install R16B02-basho8 ~/erlang/R16B02-basho8 $ . ~/erlang/R16B02-basho8/activate
-
をビルド
このプロセスのために
私はエラーを取得しています:
[[email protected] riak]$ make rel Using rebar.config.lock file to fetch dependencies ./rebar -C rebar.config.lock get-deps Uncaught error in rebar_core: {'EXIT', {undef, [{crypto,start,[],[]}, {rebar,run_aux,2, [{file,"src/rebar.erl"},{line,212}]}, {rebar,main,1, [{file,"src/rebar.erl"},{line,58}]}, {escript,run,2, [{file,"escript.erl"},{line,747}]}, {escript,start,1, [{file,"escript.erl"},{line,277}]}, {init,start_it,1,[]}, {init,start_em,1,[]}]}}
私も同じ結果で、ソースからのErlangを構築しようとしました。
wget http://s3.amazonaws.com/downloads.basho.com/erlang/otp_src_R16B02-basho8.tar.gz tar zxvf otp_src_R16B02-basho8.tar.gz cd OTP_R16B02_basho8 ./otp_build autoconf ./configure && make && sudo make install