可能是重复的here,但找不到正确答案,因此提出了问题。
因此,我在本地计算机mongodb
上进行了M1
的设置,其中mongo服务正在运行,并且db有一些数据。
现在,我想使用另一台机器M2
上的mongo客户端连接到此mongodb,但无法。
在所有答案之后,我尝试在M2
文件中添加mongodb.conf
地址,但没有成功。
net:
bindIp: [m2.some.valid.ip,127.0.0.1]
我什至尝试给0.0.0.0
,但还是没有运气。使用本地主机,可以从我自己的计算机进行连接,但是如果我提到M1
地址并使用该地址在本地尝试,我会得到
Cannot connect to Mongo DB at M1 address, network is unreachable.
AM在这里严重停留了很长时间。刚从mongodb
开始,请原谅任何新手问题。
我所有的mongo服务都已启动并正在运行,并且能够使用终端或本地主机上的任何mongo客户端访问数据。
这是我在终端上运行命令mongod
时的日志:
2018-09-11T11:14:13.977+0530 I CONTROL [main] Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'
2018-09-11T11:14:13.993+0530 I CONTROL [initandlisten] MongoDB starting : pid=11307 port=27017 dbpath=/data/db 64-bit host=DELC02S5E2CG8WN.sea.corp.expecn.com
2018-09-11T11:14:13.993+0530 I CONTROL [initandlisten] db version v4.0.2
2018-09-11T11:14:13.993+0530 I CONTROL [initandlisten] git version: fc1573ba18aee42f97a3bb13b67af7d837826b47
2018-09-11T11:14:13.993+0530 I CONTROL [initandlisten] allocator: system
2018-09-11T11:14:13.993+0530 I CONTROL [initandlisten] modules: none
2018-09-11T11:14:13.993+0530 I CONTROL [initandlisten] build environment:
2018-09-11T11:14:13.993+0530 I CONTROL [initandlisten] distarch: x86_64
2018-09-11T11:14:13.993+0530 I CONTROL [initandlisten] target_arch: x86_64
2018-09-11T11:14:13.993+0530 I CONTROL [initandlisten] options: {}
2018-09-11T11:14:13.993+0530 I STORAGE [initandlisten] Detected data files in /data/db created by the 'wiredTiger' storage engine, so setting the active storage engine to 'wiredTiger'.
2018-09-11T11:14:13.993+0530 I STORAGE [initandlisten] wiredtiger_open config: create,cache_size=7680M,session_max=20000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000),statistics_log=(wait=0),verbose=(recovery_progress),
2018-09-11T11:14:14.698+0530 I STORAGE [initandlisten] WiredTiger message [1536644654:698414][11307:0x7fff8fb43380], txn-recover: Main recovery loop: starting at 2/7040
2018-09-11T11:14:14.792+0530 I STORAGE [initandlisten] WiredTiger message [1536644654:792304][11307:0x7fff8fb43380], txn-recover: Recovering log 2 through 3
2018-09-11T11:14:14.856+0530 I STORAGE [initandlisten] WiredTiger message [1536644654:856010][11307:0x7fff8fb43380], txn-recover: Recovering log 3 through 3
2018-09-11T11:14:14.904+0530 I STORAGE [initandlisten] WiredTiger message [1536644654:904754][11307:0x7fff8fb43380], txn-recover: Set global recovery timestamp: 0
2018-09-11T11:14:15.037+0530 I RECOVERY [initandlisten] WiredTiger recoveryTimestamp. Ts: Timestamp(0, 0)
2018-09-11T11:14:15.103+0530 I CONTROL [initandlisten]
2018-09-11T11:14:15.103+0530 I CONTROL [initandlisten] ** WARNING: Access control is not enabled for the database.
2018-09-11T11:14:15.103+0530 I CONTROL [initandlisten] ** Read and write access to data and configuration is unrestricted.
2018-09-11T11:14:15.103+0530 I CONTROL [initandlisten]
2018-09-11T11:14:15.103+0530 I CONTROL [initandlisten] ** WARNING: This server is bound to localhost.
2018-09-11T11:14:15.103+0530 I CONTROL [initandlisten] ** Remote systems will be unable to connect to this server.
2018-09-11T11:14:15.103+0530 I CONTROL [initandlisten] ** Start the server with --bind_ip <address> to specify which IP
2018-09-11T11:14:15.103+0530 I CONTROL [initandlisten] ** addresses it should serve responses from, or with --bind_ip_all to
2018-09-11T11:14:15.103+0530 I CONTROL [initandlisten] ** bind to all interfaces. If this behavior is desired, start the
2018-09-11T11:14:15.103+0530 I CONTROL [initandlisten] ** server with --bind_ip 127.0.0.1 to disable this warning.
2018-09-11T11:14:15.103+0530 I CONTROL [initandlisten]
2018-09-11T11:14:15.157+0530 I FTDC [initandlisten] Initializing full-time diagnostic data capture with directory '/data/db/diagnostic.data'
2018-09-11T11:14:15.161+0530 I NETWORK [initandlisten] waiting for connections on port 27017
mongodb版本为db version v4.0.2
,正在使用Mac。
此外,当我绑定M2
机器的ip并执行mongo --host m2.address
时,我得到了:
mongo --host m2.address
MongoDB shell version v4.0.2
connecting to: mongodb://m2.address:27017/
2018-09-11T11:31:07.186+0530 E QUERY [js] Error: couldn't connect to server m2.address:27017, connection attempt failed: SocketException: Error connecting to m2.address:27017 :: caused by :: Connection refused :
connect@src/mongo/shell/mongo.js:257:13
@(connect):1:6
exception: connect failed
更新
这些是我尝试连接之前执行的步骤:
mongodb
服务:brew服务启动mongodb mongod
启动mongod
0.0.0.0
指定为连接地址来创建连接。也尝试了特定的地址。 让我知道启动时是否缺少任何参数或做错了什么。
答案 0 :(得分:0)
在回答所有问题之后,我尝试在mongodb.conf文件中添加M2地址,但是没有运气。
这是错误的。 net.bindIp
包含服务器侦听的M1接口的列表,因此要使M2连接到M1,net.bindIp应该具有M1 ip地址。
此外,当我绑定M2机器的ip并执行
mongo --host m2.address
时,我得到了:
这是错误的。 --host
参数应具有服务器的IP地址-在您的情况下为M1。
使用Robo3T通过指定0.0.0.0创建连接
这没有任何意义。 0.0.0.0
根本不是有效的IP地址。可以将其用作M1上mongodb.conf中net.bindIp的通配符值,以使服务器侦听所有可用接口。 Robo3T是一个客户端,您需要为其提供服务器的IP地址才能连接到它。
在M1(服务器)上:
net.bindIp: 0.0.0.0
在M2(客户端)上:
mongo --host m1.address
sudo lsof -i | grep mongod
。它应至少打印1个带有TCP *:27017 (LISTEN)
之类的进程。 telnet m1_ip 27017
,它应该会为您提供类似Escape character is '^]'
的信息。