MONGO_URL
我正在尝试将我的 Meteor 应用程序连接到 Atlas MongoDB ,我正在设置MONGO_OPLOG_URL
如下:
MONGO_URL="mongodb://username:password@host:27017,host:27017,host:27017/databasename?ssl=true&replicaSet=melee-shard-0&authSource=admin"
MONGO_OPLOG_URL="mongodb://username:password@host:27017,host:27017,host:27017/local?ssl=true&replicaSet=melee-shard-0&authSource=admin"
但是,启动 Meteor 应用程序时出现错误:
错误:在初始种子列表中找不到任何有效服务器
我究竟做错了什么?