码迷,mamicode.com
首页 > 其他好文 > 详细

mongo - 升级步骤

时间:2015-05-06 16:56:45      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

升级步骤
1. 关闭balancer
登陆mongos,执行sh.stopBalancer(),或者

连接到mongos
>use config
>db.settings.update( { _id: "balancer" }, { $set : { stopped: true } } , true );

关闭balancer后,需检查是否还有migretion:If a migration is in progress, the system will complete the in-progress migration. After disabling, you can use the following operation in the mongo shell to determine if there are no migrations in progress:

use config
while( db.locks.findOne({_id: "balancer"}).state ) {
print("waiting..."); sleep(1000);
}

2. 升级mongos,逐个升级
关闭服务后,用高版本启动

3. 升级config
升级时,至少保持一个config在线。
关闭服务后(db.shutdownServer),用高版本启动。

4. 升级mongod
首先升级secondry:关闭服务后(db.shutdownServer),使用高版本启动secondry节点,直到该节点recovery完毕(使用rs.stats()查看状态)。

升级其他secondry节点。
然后step down primary节点(rs.stepDown()),再升级primary节点。

最后升级仲裁节点。

5. 启动balancer
登陆mongos,执行sh.startBalancer(),或者

连接到mongos
>use config
>db.settings.update( { _id: "balancer" }, { $set : { stopped: false } } , true );

 

转自:http://www.cnblogs.com/yuechaotian/archive/2013/01/09/2852901.html

mongo - 升级步骤

标签:

原文地址:http://www.cnblogs.com/wsjhk/p/4482243.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!