I was tryign to install the latest mongo database on my MacOS via the official tutorial. So the following commands effectively seem to work for me:
brew services start [email protected]
brew services list
lists the following
mongodb-community started naman .../LaunchAgents/homebrew.mxcl.mongodb-community.plist
Further, when I am trying to execute mongo
, I am able to successfully create a session for shell
MongoDB shell version v4.4.3
connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb
Implicit session: session { "id" : UUID("57e62dd9-77f2-48c2-8fe8-8fe9fe79a1d2") }
and access the databases, collections, execute the queries, and all.
But further trying to connect to this URI using MongoDB Compass to make use of its visual tree for explain
, I am getting to see that the compression has to be enabled as a must:
and upon specifying the compression as snappy
, it would read the following:
An error occurred while loading navigation: Attempted to use Snappy
compression, but Snappy is not installed. Install or disable Snappy
compression and try again.
The MongoDB Version in use is v4.4.3
and compass version Version 1.25.0
, is there a workaround for this or do I need to tweak my configs from defaults?
question from:
https://stackoverflow.com/questions/65838928/an-error-occurred-while-loading-navigation-attempted-to-use-snappy-compression 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…