I installed mongo with:
brew install mongodb
I created the data directory:
/data/dir
i included mongod
the path (which mongod --> /opt/local/bin/mongod
):
export PATH=$PATH:/opt/local/bin/mongod
I tried to run mongod
:
mongod
And got this response:
dyld: lazy symbol binding failed: Symbol not found: __ZN7pcrecpp2RE4InitERKSsPKNS_10RE_OptionsE
Referenced from: /opt/local/bin/mongod
Expected in: /opt/local/lib/libpcrecpp.0.dylib
dyld: Symbol not found: __ZN7pcrecpp2RE4InitERKSsPKNS_10RE_OptionsE
Referenced from: /opt/local/bin/mongod
Expected in: /opt/local/lib/libpcrecpp.0.dylib
What is this error all about? How do I proceed?