Connect to Meteora with Robomongo

I have Meteor running on a local virtual machine on Windows, accessible using the IP address 192.168.56.111

When I use Robomongo, I use this IP and point it to port 3001 and I cannot connect.

Should I wait for a connection? If not, is there something I need to do to connect it?

+3


source to share


2 answers


Install an SSH server on Windows and then just create an SSH tunnel:

ssh -L27018:192.168.56.111:3001 user@host

      



After that open Robomongo and connect to localhost: 27018. That's it!

This is the method I am successfully using to connect to a production database.

+3


source


With meteorite, the working database is bound to 127.0.0.1, so it won't be available on other IP addresses. I think this was done for security reasons, although I'm not sure.



You should use local IP / 127.0.0.1 instead of 192.168.56.11.

+2


source







All Articles