Centos7 搭建Mongodb 分片集群4.0/ PSA(三成员副本集)

以下是搭建MongoDB 4.0分片集群的步骤和示例配置:

  1. 安装MongoDB 4.0:



sudo tee /etc/yum.repos.d/mongodb-org-4.0.repo <<EOF
[mongodb-org-4.0]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/\$releasever/mongodb-org/4.0/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-4.0.asc
EOF
 
sudo yum install -y mongodb-org
  1. 配置分片(shard)服务器:

    编辑 /etc/mongod.conf 文件,添加以下配置到 shardX 部分(例如 shard1):




sharding:
  clusterRole: shardsvr
  1. 配置配置服务器(config server):

    编辑 /etc/mongod.conf 文件,添加以下配置:




sharding:
  clusterRole: configsvr
  1. 配置路由器(mongos):

    无需对 /etc/mongod.conf 进行配置,mongos启动后将连接到配置服务器。

  2. 启动MongoDB服务:



sudo systemctl start mongod
  1. 初始化分片集群:

    在其中一台路由器服务器上运行以下命令:




mongo --host <mongos-server-address> --port 27017

然后运行:




sh.enableSharding("mydb")
sh.shardCollection("mydb.mycollection", {"mykey": 1})

替换 <mongos-server-address> 为你的mongos服务器地址,mydb 为你想要分片的数据库名,mycollection 为集合名,mykey 为分片键。

  1. 配置复制集:

    对每个分片和配置服务器,配置复制集。例如,对于名为 shard1 的分片:




mongo --host <shard1-address> --port 27017

然后运行:




rs.initiate(
  {
    _id: "shard1RepSet",
    members: [
      { _id: 0, host: "<shard1-address>:27017" },
      { _id: 1, host: "<shard2-address>:27017" },
      { _id: 2, host: "<shard3-address>:27017", arbiterOnly: true }
    ]
  }
)

确保替换 <shard1-address><shard2-address> 以及 <shard3-address> 为你的服务器地址,并且设置一个仲裁节点(arbiter)。对其他分片和配置服务器重复相同的步骤。

  1. 配置mongos与复制集交互:

    在mongos服务器上运行:




mongo --host <mongos-server-address> --port 27017

然后添加分片和配置服务器到复制集配置:




sh.status()
sh.addShard("shard1RepSet/<shard1-address>:27017")
sh.addShard("shard1RepSet/<shard2-address>:27017")
sh.addShard("shard1RepSet/<shard3-address>:27017")
sh.addShard("configReplSet/<config-server1-address>:27017")
sh.addShard("configReplSet

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日