--创建配置服务器
mongod.exe --logpath "G:USERDATAMONGODBTest2Logmongodb.log" --logappend --dbpath "G:USERDATAMONGODBTest2DB" --port 27031 --serviceName "MongoTest2" --serviceDisplayName "MongoTest2" --install --configsvr
--创建分片控制器
mongos --configdb 172.23.88.116:27031 --port 27041 --chunkSize 1 --serviceName "MongoTest2" --logpath "G:USERDATAMONGODBTest2Logmongodb.log" --serviceDisplayName "MongoTest2" --install
--创建两个具体的分片服务器
mongod.exe --logpath "G:USERDATAMONGODBTestLogmongodb.log" --logappend --dbpath "G:USERDATAMONGODBTestDB" --port 27030 --serviceName "MongoTest" --serviceDisplayName "MongoTest" --install
--卸载Mongodb服务
mongod.exe --remove --serviceName "MongoTest"
mongod.exe --remove --serviceName "MongoTest2"
--增加分片
db.runCommand({ addshard:"172.23.88.116:27030" })
db.runCommand({ addshard:"172.23.88.116:27040" })
--查看分片状态
db.printShardingStatus();
--设置分片的库
db.runCommand({ enablesharding:"RelationList" })
--设置分片的集合,注意名称一定是库名+表名
db.runCommand({ shardcollection: "RelationList.macTable", key: { _id:1}})