一、規劃好連接埠ip
架構圖如下,任意抽取每個複本集中的一個分區(非仲裁節點)可以組成一份完整的資料。
1. 第一個複本集rs1
share1 127.0.0.1:30011:c:/data/share_rs1/share1/data/
share2 127.0.0.1:40011:c:/data/share_rs1/share2/data/
share3 127.0.0.1:50011:c:/data/share_rs1/share3/data/
2. 第二個複本集rs2
share1 127.0.0.1:30012:c:/data/share_rs2/share1/data/
share2 127.0.0.1:40012:c:/data/share_rs2/share2/data/
share3 127.0.0.1:50012:c:/data/share_rs2/share3/data/
3. 第三個複本集rs3
share1 127.0.0.1:30013:c:/data/share_rs3/share1/data/
share2 127.0.0.1:40013:c:/data/share_rs3/share2/data/
share3 127.0.0.1:50013:c:/data/share_rs3/share3/data/
4.config server
config1 127.0.0.1:30002:c:/data/config/config1/data/
config2 127.0.0.1:30002:c:/data/config/config2/data/
config3 127.0.0.1:30002:c:/data/config/config3/data/
5. mongos
mongos1 127.0.0.1:30001:c:/data/mongos/mongos1/data/
mongos2 127.0.0.1:30001:c:/data/mongos/mongos2/data/
mongos3 127.0.0.1:30001:c:/data/mongos/mongos3/data/
二、建立相應的目錄
mkdir -p c:/data/{share_rs1,share_rs2,share_rs3}/{share1,share2,share3}/{data,log}
mkdir -p c:/data/mongos/{mongos1,mongos2,mongos3}/{data,log}
mkdir -p c:/data/config/{config1,config2,config3}/{data,log}
三、配置mongs和config的設定檔(其他副本參考修改連接埠以及ip)
[mongo@mongo config1]$ cat mongo.conf
dbpath=c:/data/config/config1/data/
logpath=c:/data/config/config1/log/mongo.log
logappend=true
port=30002
rest=true
httpinterface=true
configsvr=true
[mongo@mongo mongs1]$ cat mongo.conf
logpath=c:/data/mongos/mongos1/log/mongo.log
logappend=true
port=30001
configdb=127.0.0.1:30002,127.0.0.1:40002,127.0.0.1:50002
chunkSize=1
四、依次啟動三個副本上的config伺服器以及mongs伺服器
mongod -f c:/data/config/config1/mongo.conf
mongod -f c:/data/config/config2/mongo.conf
mongod -f c:/data/config/config3/mongo.conf
mongos -f c:/data/mongos/mongos1/mongo.conf
mongos -f c:/data/mongos/mongos2/mongo.conf
mongos -f c:/data/mongos/mongos3/mongo.conf
五、配置mong分區的的設定檔(其他副本參考修改連接埠以及ip),同一個分區的複本集名稱一樣,即replSet。
第一個複本集的一個分區
[mongo@mongo share_rs1]$ cat share1/mongo.conf
dbpath=c:/data/share_rs1/share1/data
logpath=c:/data/share_rs1/share1/log/mongo.log
logappend=true
port=30011
rest=true
httpinterface=true
replSet=rs1
shardsvr=true
第二個複本集的一個分區
[mongo@mongo share_rs2]$ cat share1/mongo.conf
dbpath=c:/data/share_rs2/share1/data
logpath=c:/data/share_rs2/share1/log/mongo.log
logappend=true
port=30012
rest=true
httpinterface=true
replSet=rs2
shardsvr=true
第三個複本集的一個分區
[mongo@mongo share_rs1]$ cat share1/mongo.conf
dbpath=c:/data/share_rs3/share1/data
logpath=c:/data/share_rs3/share1/log/mongo.log
logappend=true
port=30013
rest=true
httpinterface=true
replSet=rs3
shardsvr=true
六、啟動各個分區以及相應的副本
mongod -f c:/data/share_rs1/share1/mongo.conf
mongod -f c:/data/share_rs1/share2/mongo.conf
mongod -f c:/data/share_rs1/share3/mongo.conf
mongod -f c:/data/share_rs2/share1/mongo.conf
mongod -f c:/data/share_rs2/share2/mongo.conf
mongod -f c:/data/share_rs2/share3/mongo.conf
mongod -f c:/data/share_rs3/share1/mongo.conf
mongod -f c:/data/share_rs3/share2/mongo.conf
mongod -f c:/data/share_rs3/share3/mongo.conf
[mongo@mongo share_rs]$ ps -ef | grep mongo | grep share | grep -v grep
mongo 2480 1 0 12:50 ? 00:00:03 mongod -f c:/data/share_rs1/share1/mongo.conf
mongo 2506 1 0 12:50 ? 00:00:03 mongod -f c:/data/share_rs1/share2/mongo.conf
mongo 2532 1 0 12:50 ? 00:00:02 mongod -f c:/data/share_rs1/share3/mongo.conf
mongo 2558 1 0 12:50 ? 00:00:03 mongod -f c:/data/share_rs2/share1/mongo.conf
mongo 2584 1 0 12:50 ? 00:00:03 mongod -f c:/data/share_rs2/share2/mongo.conf
mongo 2610 1 0 12:50 ? 00:00:02 mongod -f c:/data/share_rs2/share3/mongo.conf
mongo 2636 1 0 12:50 ? 00:00:01 mongod -f c:/data/share_rs3/share1/mongo.conf
mongo 2662 1 0 12:50 ? 00:00:01 mongod -f c:/data/share_rs3/share2/mongo.conf
mongo 2688 1 0 12:50 ? 00:00:01 mongod -f c:/data/share_rs3/share3/mongo.conf
mongo 3469 1 0 13:17 ? 00:00:00 mongod -f c:/data/config/config1/mongo.conf
mongo 3485 1 0 13:17 ? 00:00:00 mongod -f c:/data/config/config2/mongo.conf
mongo 3513 1 0 13:17 ? 00:00:00 mongod -f c:/data/config/config3/mongo.conf
mongo 3535 1 0 13:18 ? 00:00:00 mongos -f c:/data/mongos/mongos1/mongo.conf
mongo 3629 1 0 13:22 ? 00:00:00 mongos -f c:/data/mongos/mongos2/mongo.conf
mongo 3678 1 0 13:22 ? 00:00:00 mongos -f c:/data/mongos/mongos3/mongo.conf
七、設定複本集
1.登入第一個副本的一個分區,為其設定複本集
mongo 127.0.0.1:30011/admin
config = { _id:”rs1”, members:[
{_id:0,host:”127.0.0.1:30011”},
{_id:1,host:”127.0.0.1:40011”},
{_id:2,host:”127.0.0.1:50011”,arbiterOnly:true}
]
}
– >; 注意:這裡id rs1 需要與複本集中的名稱一樣即replSet的值
rs.initiate(config)
{ “ok” : 1 } – >; 提示這個說明初始化成功
2.登入第二個副本的一個分區,為其設定複本集
mongo 127.0.0.1:30012/admin
config = { _id:”rs2”, members:[
{_id:0,host:”127.0.0.1:30012”},
{_id:1,host:”127.0.0.1:40012”},
{_id:2,host:”127.0.0.1:50012”,arbiterOnly:true}
]
}
rs.initiate(config)
{ “ok” : 1 } – >; 提示這個說明初始化成功
3.登入第三個副本的一個分區,為其設定複本集
mongo 127.0.0.1:30013/admin
config = { _id:”rs3”, members:[
{_id:0,host:”127.0.0.1:30013”},
{_id:1,host:”127.0.0.1:40013”},
{_id:2,host:”127.0.0.1:50013”,arbiterOnly:true}
]
}
rs.initiate(config)
{ “ok” : 1 } – >; 提示這個說明初始化成功
八、目前前搭建了mongodb設定管理員、路由伺服器,各個分區伺服器,不過應用程式串連mongos 路由伺服器並不能使用分區機制,還需要在程式裡設定分區配置,讓分區生效。
串連到第一個mongos上
mongo 127.0.0.1:30001/admin
db.runCommand({addshard:”rs1/127.0.0.1:30011,127.0.0.1:40011,127.0.0.1:50011”,allowLocal:true});
db.runCommand({addshard:”rs2/127.0.0.1:30012,127.0.0.1:40012,127.0.0.1:50012”});
db.runCommand({addshard:”rs3/127.0.0.1:30013,127.0.0.1:40013,127.0.0.1:50013”});
– >; 將第一個分區的所有副本全部加入
– >; 如裡shard是單台伺服器,用 db.runCommand( { addshard : “[: ]” } )這樣的命令加入
– >; 如果shard是複本集,用db.runCommand( { addshard : “replicaSetName/[:port][,serverhostname2[:port],…]” });這樣的格式表示.
mongos>sh.status()
— Sharding Status —
sharding version: {
“_id” : 1,
“minCompatibleVersion” : 5,
“currentVersion” : 6,
“clusterId” : ObjectId(“57f33f4d35d9c494714adfa7”)
}
shards:
{ “_id” : “rs1”, “host” : “rs1/127.0.0.1:30011,127.0.0.1:40011” }
{ “_id” : “rs2”, “host” : “rs2/127.0.0.1:30012,127.0.0.1:40012” }
{ “_id” : “rs3”, “host” : “rs3/127.0.0.1:30013,127.0.0.1:40013” }
active mongoses:
“3.2.7” : 3
balancer:
Currently enabled: yes
Currently running: no
Failed balancer rounds in last 5 attempts: 0
Migration Results for the last 24 hours:
No recent migrations
databases:
九、將集合進行分區。
db.runCommand({enablesharding:”testcol”});
– >; 指定testdb分區生效
db.runCommand({shardcollection: “testcol.testdoc”,key : {id: 1} } )
– >; 指定資料庫裡需要分區的集合和片鍵
–>; 插入測試資料
for (var i = 1; i <;= 100000; i++){ db.testdoc.save({id:i,”name”:”harvey”})}; – >; 查看該集合的狀態
db.testdoc.stats();