Docker 学习笔记.
Mongodb 安装
没什么好说的 = =!
Mongodb 主从复制
参照这个地址 : http://dockone.io/article/181
创建证书并 copy 给各个服务器.
root@node *:/# mkdir -p /home/core
root@node *:/# cd /home/core
root@node *:/# openssl rand -base64 741 > mongodb-keyfile
root@node *:/# chmod 600 mongodb-keyfile
root@node *:/# sudo chown 999 mongodb-keyfile
主要命令: rs.initiate()
开启副本集, rs.conf()
验证初始化副本集, rs.add("node2.example.com")
添加备节点, rs.add("node3.example.com",{arbiterOnly: true})
添加仲裁者节点.
--smallfiles \
--keyFile /opt/keyfile/mongodb-keyfile \
--replSet "rs0"
mongodb启动时需要增加的参数, keyFile 指定链接的关键密匙, replSet 统一集合名称.
Mongodb 从服务器可查
参照这个地址 : http://docs.mongodb.org/manual/reference/method/rs.slaveOk/
Mongodb 分片
分片就是将,数据分成几个碎片来进行管理,提升性能.
主从(集群)可以作为一个片进入.
需要 config 服务, mongos 分配服务, 和片(mongod).
如果所有服务都不在同一主机, 那么需要配置 keyFile 与 主从一样.
config:
docker --icc=true run -it --privileged=true \
-v /my/db/core/:/opt/keyfile \
-v /my/db/config/:/data/configdb \
-v /etc/localtime:/etc/localtime:ro \
-d \
--name config \
-p 20000:27017 \
centos-mongodb mongod --configsvr --port 27017 --keyFile /opt/keyfile/mongodb-keyfile --smallfiles
--icc=true
是为了让 container 之间互通,-v /etc/localtime:/etc/localtime:ro
是为了同步时区,这样mongodb 添加 config 的时候就不会出现时区不同步无法连接的情况了.
mongos:
docker --icc=true run -it --privileged=true \
-v /my/db/core/:/opt/keyfile \
-v /etc/localtime:/etc/localtime:ro \
-p 27017:27017 -d --name mongos \
--add-host config.example.com:10.174.35.78 \
centos-mongodb mongos --configdb config.example.com:27017 --keyFile /opt/keyfile/mongodb-keyfile
mongos 需要配置好 config 后再配置, 配置好后 , 登陆可能会没有权限, 所以先创建 root 用户.
use admin
db.createUser({user:"root",pwd:"passwd",roles:[{role:"root",db:"admin"}]})
db.auth("root","passwd")
其他工具登陆也使用这个用户名和密码.
shard1:
docker --icc=true run -it --privileged=true \
-v /my/db/core/:/opt/keyfile \
-v /my/db/shard1/:/data/db \
-v /etc/localtime:/etc/localtime:ro \
-d -p 10001:27017 --name shard1 \
centos-mongodb mongod --shardsvr --port 27017 --keyFile /opt/keyfile/mongodb-keyfile --smallfiles
shard2:
docker --icc=true run -it --privileged=true \
-v /home/core/:/opt/keyfile \
-v /home/core/shard/shard2/:/data/db \
-v /etc/localtime:/etc/localtime:ro \
-d -p 10002:27017 --name shard2 \
centos-mongodb mongod --shardsvr --port 27017 --keyFile /opt/keyfile/mongodb-keyfile --smallfiles
回到 mongos
sh.addShard("shard1.example.com:10001")
sh.addShard("shard2.example.com:10002")
同上选一种
db.runCommand({addShard:"shard1.example.com:10001"})
db.runCommand({addShard:"shard2.example.com:10002"})
查看分片结果
db.printShardingStatus()
删除片
db.runCommand({removeshard:"shard1.example.com:10001"})
为数据和表指定分片模式, 好像建议不选择 _id 为分片 key.
db.runCommand({enablesharding:"myTest"})
db.runCommand({shardcollection:"myTest.test",key:{_id:1}})
至此分片完成, 可以进行实际操作.