{error,{not_started,ibrowse}}使用couchbeam时

时间:2012-03-01 03:13:50

标签: erlang couchdb ubuntu-11.10

本文件http://benoitc.github.com/couchbeam/

application:start(sasl),
application:start(ibrowse),
application:start(couchbeam).

当我运行代码时,它会显示:

=PROGRESS REPORT==== 1-Mar-2012::10:16:57 ===
         application: crypto
          started_at: nonode@nohost
{error,{not_started,ibrowse}}

我想知道如何让application:start(ibrowse),工作,谢谢!

3 个答案:

答案 0 :(得分:0)

根据您的错误消息“started_at:nonode @ nohost”,我认为它可能是由您的erlang配置文件错误引起的。 您是否设置了“.erlang.cookie”文件,并且文件所有者模式是独占的吗?只允许所有者读或写? 您可以输入命令“erl -sname aaa”来检查问题吗?输出“nonode @ nohost”?

答案 1 :(得分:0)

它的工作原理是erl -pz ibrowse/ebin/

答案 2 :(得分:0)

我修复了:

erl -pa ebin -pa deps/ibrowse/ebin -s couchbeam
相关问题