真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MongoDBMaster/Slaver配置

接MongoDB快速入門

本文主要介紹MongoDB Master/Slaver配置
  1. 首先創(chuàng)建Mongo Master
    /home/hrj/mongodb-linux-i686-static-1.6.5/bin/mongod --master --dbpath /home/hrj/mongodb_data --auth --maxConns 50    --port 6688

  2. 其次創(chuàng)建Mongo Slaver
    /home/hrj/mongodb-linux-i686-static-1.6.5/bin/mongod --slave --source myna5.sds.cnb.yahoo.com:6688 --auth --maxConns 50 --auth    --port 6689 --fastsync --autoresync --dbpath /home/hrj/mongodb_slave_data
  3. 創(chuàng)建Master、Slaver帳號
    ~/mongodb-linux-i686-static-1.6.5/bin/mongo 127.0.0.1:6689 ### 在Slaver上創(chuàng)建帳號
    > use local
    switched to db local
    > db.addUser('hrj','xxx')
    {
                    "_id" : ObjectId("4d6f6527013fcbcc74575c20"),
                    "user" : "hrj",
                    "readOnly" : false,
                    "pwd" : "b27edaa5a8858aa3d46b60698fce1359"

     ~/mongodb-linux-i686-static-1.6.5/bin/mongo 127.0.0.1:6688 ### 在Master上創(chuàng)建帳號
    MongoDB shell version: 1.6.5
    connecting to: 127.0.0.1:6688/test
    >use local
    switched to db local
    > db.addUser('hrj','xxx')
    {
                    "_id" : ObjectId("4d6f6527013fcbcc74575c20"),
                    "user" : "hrj",
                    "readOnly" : false,
                    "pwd" : "b27edaa5a8858aa3d46b60698fce1359"
    }
    >use test ###添加帳號認(rèn)證
    switched to db local
    > db.auth('hrj','xxx')
  4. 向Master加載數(shù)據(jù),測試Slaver是否正常同步
    ###Master
    ~/mongodb-linux-i686-static-1.6.5/bin/mongo 127.0.0.1:6688
    MongoDB shell version: 1.6.5
    connecting to: 127.0.0.1:6688/test                                
    > db.foo.save({'mongodb':'hello world'}) ###導(dǎo)入數(shù)據(jù)
    > db.foo.find()   ###查詢數(shù)據(jù)                                             
    { "_id" : ObjectId("4d6f72c6d807e8561b0f3db5"), "mongodb" : "hello world" }
    ###Slaver
    ~/mongodb-linux-i686-static-1.6.5/bin/mongo 127.0.0.1:6689
    MongoDB shell version: 1.6.5
    connecting to: 127.0.0.1:6689/test
    > db.foo.find() ###查詢Slaver同步數(shù)據(jù)
    { "_id" : ObjectId("4d6f72c6d807e8561b0f3db5"), "mongodb" : "hello world" }
    > db.foo.save({'mongodb':'hello world test 1'}) ###Slaver導(dǎo)入數(shù)據(jù),提示"not master"
    not master

至此Master/Slaver大致調(diào)試成功。在這里大致提一下Master/Slaver特別參數(shù):

Master

    --master                            master模式
    --oplogSize arg             size limit (in MB) for op log

Slave

    --slave                             slave模式
    --source arg                    source指定master位置
    --only arg                        單獨(dú)指定備份某一database
    --slavedelay arg            指定與Master延遲時間(秒)
    --autoresync                    當(dāng)Slave數(shù)據(jù)過時后自動重連


特別推薦:
     很可能會出現(xiàn)Master服務(wù)器Down掉之后,需要用Slave服務(wù)器來頂替Master提供服務(wù)器的情況,這個時候就需要做如下操作:
  1. 停止Slave進(jìn)程(mongod)
  2. 刪除Slave數(shù)據(jù)目錄中的local.*
  3. 以--master模式啟動Slave
這個時候,Slave就可以作為一個Master來運(yùn)行了。


新聞標(biāo)題:MongoDBMaster/Slaver配置
路徑分享:http://weahome.cn/article/jeepdh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部