mongodb重新配置分片端口

时间:2012-10-23 14:38:42

标签: mongodb sharding

我已经通过查找他们的.conf文件在非标准端口上重新启动了2个分片。现在当我通过mongo连接并发出一个listhards时,我得到了:

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)?

1 个答案:

答案 0 :(得分: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" }