emongo icon indicating copy to clipboard operation
emongo copied to clipboard

Need to start sasl before starting emongo

Open marianoguerra opened this issue 14 years ago • 2 comments

maybe this is a documentation bug, if I try to start emongo like this:

1> application:start(emongo). {error,{not_started,sasl}}

if I start the shell with this options:

erl -pa emongo/ebin -sasl errlog_type error -eval "application:start(sasl)"

then:

1> application:start(emongo). ok

I think it should be in the REAME (or maybe there is something I'm missing)

marianoguerra avatar May 20 '10 18:05 marianoguerra

sasl's fairly common in otp applications...

for anyone wanting a quick start from console you can do this before starting emongo

application:start(sasl).

bleeppurple avatar Jun 02 '10 22:06 bleeppurple

Is it really a dependency, cause for example it produces too much output when I do eunit testing.

sinkovsky avatar Jan 04 '11 15:01 sinkovsky