How to allow all hosts to a replica set in mongodb

淺唱寂寞╮ 提交于 2020-06-28 03:57:31

问题


When I am connecting my replica set from local machine like this

"mongodb://my_server_ip:27018/?readPreference=secondary&replicaSet=rs0&appname=MongoDB%20Compass&ssl=false"

It gives me an error "Could not reach any servers" and on mongo compass "connect ECONNREFUSED 127.0.0.1:27018"

I think this error comes from replica set configs, where host key is "localhost:27018"

Below is the replica set member info:

{
    "_id": 1,
    "host": "localhost:27018",
    "arbiterOnly": false,
    "buildIndexes": true,
    "hidden": false,
    "priority": 1,
    "tags": {

    },
    "slaveDelay": NumberLong(0),
    "votes": 1
}

How to allow all hosts to this replica?


回答1:


Replica set must be configured with host addresses that are accessible from both RS nodes and the clients.

For an RS used over the network, this means public hostnames/IP addresses of the host nodes rather than loopback addresses.



来源:https://stackoverflow.com/questions/62229008/how-to-allow-all-hosts-to-a-replica-set-in-mongodb

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