Mongodb Sharding-没有这样的命令:'addShard' [英] Mongodb Sharding - no such command: 'addShard'

查看:883
本文介绍了Mongodb Sharding-没有这样的命令:'addShard'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在一台计算机上配置分片,并且在尝试添加分片时不断收到错误消息.我使用以下网站作为参考: http://www.javahotchocolate.com/notes/mongodb-sharding.html

I'm trying to configure sharding in one machine and I keep getting an error message when trying to add shards. I'm using the following website as a reference: http://www.javahotchocolate.com/notes/mongodb-sharding.html

我正在使用一台计算机,并使用不同的端口来模拟不同的IP.

I'm using a single machine and using different ports to simulate the different IPs.

我的配置如下:

副本集成员:

mongod --dbpath \rs1_p\db --port 27017 --replSet rs1
mongod --dbpath \rs1_s1\db --port 27018 --replSet rs1
mongod --dbpath \rs1_s2\db --port 27019 --replSet rs1
mongod --dbpath \rs1_p\db --port 47017 --replSet rs2
mongod --dbpath \rs1_s1\db --port 47018 --replSet rs2
mongod --dbpath \rs1_s2\db --port 47019 --replSet rs2

在MongoDB Shell中配置副本集:

Configuring replica sets in MongoDB shell:

config =
{
    _id:"rs1",
    members:
    [
        { _id:0, host:"computerName:27017" },
        { _id:1, host:"computerName:27018" },
        { _id:2, host:"computerName:27019" }
    ]
}
rs.initiate( config )

config =
{
    _id:"rs2",
    members:
    [
        { _id:0, host:"computerName:47017" },
        { _id:1, host:"computerName:47018" },
        { _id:2, host:"computerName:47019" }
    ]
}
rs.initiate( config )

启动配置服务器:

mongod --dbpath \c1\db --configsvr --port 37017
mongod --dbpath \c2\db --configsvr --port 37018
mongod --dbpath \c3\db --configsvr --port 37019

启动分片路由器:

mongos --port 27077 --configdb computerName:37017, computerName:37018, computerName:37019
mongos --port 27078 --configdb computerName:37017, computerName:37018, computerName:37019

一切正常,直到这里,但是在下一步中收到错误消息

All okay until here, but In getting an error message in the next step

sh.addShard('rs1/computerName:27017')

我遇到了以下错误:

{
    "ok" : 0.0,   
    "errmsg" : "no such command: 'addShard', bad cmd: '{ addShard: \"rs1/computerName:27017\" }'",
"code" : 59
}

我似乎无法解决此错误消息.

I can not seem to get around from this error message.

关于我想念什么的任何想法.

Any ideas on what am I missing.

谢谢

推荐答案

根据文档

连接到 mongos 实例时运行addShard.将单个数据库实例添加为分片时,该命令采用以下形式

Run addShard when connected to a mongos instance. The command takes the following form when adding a single database instance as a shard

运行此连接到mongo shell时,将收到该错误,因此您需要连接以说mongo --port 27078并发出该命令.

when you run this connected to mongo shell you will get that error, so you need to connect to let say mongo --port 27078 and issue that command.

mongo --host <hostname of machine running mongos> --port <port mongos listens on>

手册

更多此处 查看全文

登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆