• MongoDB分片集群环境搭建记录


    --创建配置服务器
    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}})

  • 相关阅读:
    第一周作业
    C语言I博客作业08
    十四周助教总结
    十三周助教总结
    C语言I博客作业07
    C语言II博客作业01
    学期总结
    C语言I博客作业08(未完成)
    C语言I博客作业07
    C语言I博客作业06
  • 原文地址:https://www.cnblogs.com/duanjt/p/5979489.html
Copyright © 2020-2023  润新知