6

通过更改它们的 .conf 文件,我在非标准端口上重新启动了 2 个分片。现在,当我通过 mongo 连接并发出列表碎片时,我得到:

mongos> db.runCommand( { listshards : 1 } );
Tue Oct 23 17:36:21 uncaught exception: error {
    "$err" : "error creating initial database config information :: caused by :: socket exception [CONNECT_ERROR] for vserver-dev-2:37017",
    "code" : 11002
}

(37017 是旧端口)。如何更新路由器(mongos)上的分片端口?

4

1 回答 1

13

手动更新 mongo 配置服务器上的端口:

    mongo
    use config

    configsvr> db.shards.update({_id: "shard0000"} , {$set: {"host" : "vserver-dev-2:37018"}})
    configsvr> db.shards.find()
    { "_id" : "shard0000", "host" : "vserver-dev-2:37018" }
于 2012-10-23T15:01:32.833 回答