How to install on low version of mac

I have been working on getting connected to my db for ages but I can’t seem to basically (I am on mac) I installed homebrew which worked then installed mongodb but when I type mongo at all I get dyld: Symbol not found: _clock_getres
Referenced from: /usr/local/bin/mongo (which was built for Mac OS X 10.12)
Expected in: /usr/lib/libSystem.B.dylib
This is because i am on 10.10 mac so how can I fix this because i need mongodb!

What is the version you are trying to install?

Please check this jira ticket

https://jira.mongodb.org/browse/SERVER-43249

Hi @Areze_F,

MongoDB 3.6 was the last server & shell release to support Mac OS X 10.10 (Yosemite).

Since you are using Homebrew to install, try:

brew uninstall mongodb-community
brew install mongodb-community@3.6

The first command removes the latest version of MongoDB (which requires a newer macOS) and the second should install MongoDB 3.6 server and command-line tools (mongo, mongodump, etc).

Hope that helps!

Regards,
Stennie

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.