--创建配置服务器
mongod.exe --logpath "G:\USERDATA\MONGODB\Test2\Log\mongodb.log" --logappend --dbpath "G:\USERDATA\MONGODB\Test2\DB" --port 27031 --serviceName "MongoTest2" --serviceDisplayName "MongoTest2" --install --configsvr--创建分片控制器
mongos --configdb 172.23.88.116:27031 --port 27041 --chunkSize 1 --serviceName "MongoTest2" --logpath "G:\USERDATA\MONGODB\Test2\Log\mongodb.log" --serviceDisplayName "MongoTest2" --install--创建两个具体的分片服务器
mongod.exe --logpath "G:\USERDATA\MONGODB\Test\Log\mongodb.log" --logappend --dbpath "G:\USERDATA\MONGODB\Test\DB" --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}})