在Ubuntu上实现MongoDB的分片(Sharding)需要以下几个步骤:
首先,确保你已经在Ubuntu上安装了MongoDB。你可以从MongoDB官方网站下载并安装最新版本的MongoDB。
wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
sudo apt-get update
sudo apt-get install -y mongodb-org
分片集群由以下组件组成:
在三个不同的服务器上启动Config Servers。假设这些服务器的IP地址分别是192.168.1.1, 192.168.1.2, 192.168.1.3。
mongod --configsvr --replSet configReplSet --dbpath /var/lib/mongodb --port 27019 --bind_ip_all
在每个服务器上运行上述命令,并初始化副本集:
mongo --port 27019
rs.initiate(
{
_id: "configReplSet",
configsvr: true,
members: [
{ _id : 0, host : "192.168.1.1:27019" },
{ _id : 1, host : "192.168.1.2:27019" },
{ _id : 2, host : "192.168.1.3:27019" }
]
}
)
在任意一台服务器上启动Mongos Router。
mongos --configdb configReplSet/192.168.1.1:27019,192.168.1.2:27019,192.168.1.3:27019 --port 27017 --bind_ip_all
在多个服务器上启动Shard Servers。假设这些服务器的IP地址分别是192.168.1.4, 192.168.1.5, 192.168.1.6。
mongod --shardsvr --replSet shardReplSet --dbpath /var/lib/mongodb --port 27018 --bind_ip_all
在每个服务器上运行上述命令,并初始化副本集:
mongo --port 27018
rs.initiate(
{
_id: "shardReplSet",
shard: true,
members: [
{ _id : 0, host : "192.168.1.4:27018" },
{ _id : 1, host : "192.168.1.5:27018" },
{ _id : 2, host : "192.168.1.6:27018" }
]
}
)
连接到Mongos Router并添加Shard。
mongo --port 27017
sh.addShard("shardReplSet/192.168.1.4:27018,192.168.1.5:27018,192.168.1.6:27018")
选择要分片的数据库和集合,并启用分片。
sh.enableSharding("yourDatabaseName")
sh.shardCollection("yourDatabaseName.yourCollectionName", { "shardKey": 1 })
验证分片配置是否正确。
sh.status()
使用MongoDB的监控工具(如MongoDB Compass或mongostat和mongotop)来监控和管理分片集群。
通过以上步骤,你可以在Ubuntu上成功配置和运行一个MongoDB分片集群。