Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 MongoDB 设置分片集群的最简单方法是什么?
在不连接数据库的情况下启动 mongo shell:
mongo --nodb
然后开始一个新的分片测试,指定你想要的 mongos 和分片的数量:
new ShardingTest({ shards: 2, mongos: 1 })
每个进程的日志输出将通过管道传输到这个单一的 shell(所以会有很多)。这使得该 shell 有点无法使用,但至少它只占用一个窗口,并且使您不必分叉并指定日志路径。
只需打开另一个外壳,您就可以开始了。连接到端口 30999 上的第一个 mongos。