searchusermenu
  • 发布文章
  • 消息中心
点赞
收藏
评论
分享
原创

MongoDB sharding重启

2024-10-14 09:40:17
0
0

一、关闭Balancer

连接集群中任一mongos,执行

```bash
sh.stopBalancer()
```

二、关闭集群

2.1 关闭mongos

连接集群每一个mongos

```bash
use admin
db.shutdownServer()
```

2.2 关闭所有的shard副本集

连接集群每一个shard

```bash
use admin
db.shutdownServer()
```

2.3 关闭config servers

```bash
use admin
db.shutdownServer()
```

三、启动集群

3.1 启动config servers

```bash
mongod --config <path-to-config-file>
```

3.2 启动每一个shard

启动集群所有的shard分片

```bash
mongod --config <path-to-config-file>
```

3.3 启动mongos

```bash
mongos --config <path-to-config>
```

四、开启Balancer

```bash
sh.startBalancer()
```

 

0条评论
0 / 1000
福尔摩斯军
8文章数
0粉丝数
福尔摩斯军
8 文章 | 0 粉丝
福尔摩斯军
8文章数
0粉丝数
福尔摩斯军
8 文章 | 0 粉丝
原创

MongoDB sharding重启

2024-10-14 09:40:17
0
0

一、关闭Balancer

连接集群中任一mongos,执行

```bash
sh.stopBalancer()
```

二、关闭集群

2.1 关闭mongos

连接集群每一个mongos

```bash
use admin
db.shutdownServer()
```

2.2 关闭所有的shard副本集

连接集群每一个shard

```bash
use admin
db.shutdownServer()
```

2.3 关闭config servers

```bash
use admin
db.shutdownServer()
```

三、启动集群

3.1 启动config servers

```bash
mongod --config <path-to-config-file>
```

3.2 启动每一个shard

启动集群所有的shard分片

```bash
mongod --config <path-to-config-file>
```

3.3 启动mongos

```bash
mongos --config <path-to-config>
```

四、开启Balancer

```bash
sh.startBalancer()
```

 

文章来自个人专栏
linux technology
8 文章 | 1 订阅
0条评论
0 / 1000
请输入你的评论
0
0