Home > Net >  How can I connect and use MongoDB Compass from Windows to MongoDb server on WSL2
How can I connect and use MongoDB Compass from Windows to MongoDb server on WSL2

Time:10-12

I want to work with Mongo Compass running in Windows and connect to MongoDb server in WSL2.

Both MongoDb services are working fine (I can connect from Windows to MongoDb server on Windows and from WSL2 to MongoDb server on WSL2).

Windows build 19042.

Thanks!

CodePudding user response:

Unless you are running a pretty old build (from 2018 or earlier) WSL includes a feature known as Localhost Forwarding, which should automatically allow you to use localhost in Mongo Compass in Windows to connect to the database running under WSL.

However, sometimes that features "breaks", especially if you hibernate or turn on Windows with the Fast Startup feature enabled (which is the default).

If this is the case, try wsl --shutdown and restart WSL. Then disable Fast Startup. If you do need to hibernate, remember that you may need to wsl --shutdown again to restore the forwarding mechanism.

See this answer for some additional details.

CodePudding user response:

As far, as I understood, to access something running on WSL from you host-machine(Windows) you need to manually map host:port of your WSL MongoDB server to localhost.

This link describes the topic, I hope: https://docs.microsoft.com/en-us/windows/wsl/networking#accessing-a-wsl-2-distribution-from-your-local-area-network-lan

After mapping your port you probably will connect to your MongoDB server via Compass with mapped address and port.

  • Related