MongoDB集群-CSRS无法启动

时间:2018-11-14 17:11:09

标签: mongodb docker docker-compose devops

我正在尝试在this guide之后在本地环境中使用docker配置mongo sharded集群,并陷入了第一步。问题是,配置服务器副本集无法正确启动。 enter image description here

我尝试了to disable enableMajorityReadConcern ,但没有成功。看来配置服务器必须将此设置为true。 那些对我来说看起来很奇怪:

*2018-11-14T16:55:38.669+0000 I REPL     [initandlisten] Did not find local replica set configuration document at startup; NoMatchingDocument: Did not find replica set configuration document in local.system.replset* 

*2018-11-14T16:55:38.669+0000 I CONTROL 
[LogicalSessionCacheRefresh] Failed to create config.system.sessions:
Cannot create config.system.sessions until there are shards, will try
again at the next refresh interval* 

*2018-11-14T16:55:38.669+0000 I
CONTROL  [LogicalSessionCacheRefresh] Sessions collection is not set
up; waiting until next sessions refresh interval: Cannot create
config.system.sessions until there are shards*

我尝试了3个容器实例方案-所有3个容器实例显示的日志输出与单个容器方案相同。任何想法都欢迎!

1 个答案:

答案 0 :(得分:1)

解决了该问题。当CSRS首次启动时-这是预期的行为。 rs.init()命令(部署指南中的第3步)必须通过mongo shell执行,以使CSRS最终得到配置并启动。命令可以在CSRS的任何单个节点上执行。