我在Ubuntu 13.04上安装了mongodb版本2.4.3
我将mongodb-erlang安装到/usr/lib/erlang/lib/mongodb-master
(通过make)
但如果我尝试启动它,我会收到此错误:
Erlang R16B (erts-5.10.1) [source-05f1189] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false]
Eshell V5.10.1 (abort with ^G)
1> application:start(mongodb).
{error,{not_started,bson}}
答案 0 :(得分:3)
如错误消息所示,bson
应用程序未启动; mongodb
应用程序需要它。首先运行application:start(bson)
,你应该好好去。