Connect to Meteor using Robomongo

混江龙づ霸主 提交于 2019-12-06 01:50:42

Setup SSH server on Windows and then simply create SSH tunnel:

ssh -L27018:192.168.56.111:3001 user@host

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

This technique I'm using successfully to connect to production database.

With meteor the database that runs is bound to 127.0.0.1, so it will not be accessible on other IPs. I think this was done for a security reason, though not sure.

You should use the local IP/127.0.0.1 instead of 192.168.56.11.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!