部署图
部署过程
-
数据服务器DataServerA(作为shard1使用)
mongod --port 10001 --logpath cluster/log/shard1.log --logappend --shardsvr -dbpath cluster/data/shard1 --directoryperdb --rest
-
数据服务器DataServerB(作为shard2使用)
mongod --port 10002 --logpath cluster/log/shard2.log --logappend --shardsvr -dbpath cluster/data/shard2 --directoryperdb --rest
-
配置服务器ConfigServer
mongod --port 20000 --logpath cluster/log/config.log --logappend --configsvr -dbpath cluster/data/config
-
路由服务器RouteServer
先启动
mongos --port 27017 --logpath cluster/log/mongos.log --logappend --configdb 127.0.0.1:20000
再配置
mongo 127.0.0.1:27017/admin db.runCommand({ addshard : "127.0.0.1:10001"}) db.runCommand({ addshard : "127.0.0.1:10002"}) db.runCommand({ listshards : 1}) db.runCommand({ enablesharding : "test"}) db.runCommand({ shardcollection : "test.c1",key : {_id: 1} })