我想将 mongo 从 windows 中的 cmd shell 连接到在 Ubuntu 虚拟机中运行的 mongod 数据库。
mongo 在 Ubuntu 终端和 putty shell 中运行良好当我在 windows cmd shell 中使用 mongo 时,出现此错误:
mongo.exe --host 192.168.1.6 --port 27017
MongoDB shell 版本:2.4.6
连接到:192.168.1.6 :27017
/test Sat Feb 01 14:45:32.181 错误:无法连接到服务器 192.168.1.6: src/mongo/shell/mongo.js:147 处的 27017
异常:连接失败
我应该怎么做才能连接?
我的目标是使用 MongoVue 连接到 Ubuntu 机器中的 mongod 数据库(顺便说一下,即使使用 SSH 选项,MongoVue 也无法连接)。
我正在尝试连接到 meteorjs 应用程序的 mongod 实例。流星应用程序已启动并正在运行,我可以在 Ubuntu 终端和 putty shell 中连接到在 Ubuntu 机器上运行的 mongod 实例的 3002 端口。
stefano@MeteorDeploy:~$ mongo --port 3002
MongoDB shell version: 2.0.4
connecting to: 127.0.0.1:3002/test
PRIMARY> show dbs
local 0.0625GB
meteor 0.0625GB
我想使用 MongoVue 作为腻子外壳的替代品连接到 mongod 实例。我在 docs.mongodb.org/manual/tutorial/configure-linux-iptables-firewall/ 中做了,但没有成功。