91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MongoDB Master/Slaver配置

發布時間:2020-06-19 19:51:48 來源:網絡 閱讀:2085 作者:richie_hu 欄目:MongoDB數據庫
MongoDB快速入門

本文主要介紹MongoDB Master/Slaver配置
  1. 首先創建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. 其次創建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. 創建Master、Slaver帳號
    ~/mongodb-linux-i686-static-1.6.5/bin/mongo 127.0.0.1:6689 ### 在Slaver上創建帳號
    > 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上創建帳號
    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 ###添加帳號認證
    switched to db local
    > db.auth('hrj','xxx')
  4. 向Master加載數據,測試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'}) ###導入數據
    > db.foo.find()   ###查詢數據                                             
    { "_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同步數據
    { "_id" : ObjectId("4d6f72c6d807e8561b0f3db5"), "mongodb" : "hello world" }
    > db.foo.save({'mongodb':'hello world test 1'}) ###Slaver導入數據,提示"not master"
    not master

至此Master/Slaver大致調試成功。在這里大致提一下Master/Slaver特別參數:

Master

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

Slave

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


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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

伊金霍洛旗| 闸北区| 新巴尔虎左旗| 池州市| 夏津县| 谷城县| 鹤峰县| 青岛市| 古交市| 黄陵县| 灵宝市| 大宁县| 无棣县| 福鼎市| 阿图什市| 博罗县| 泽普县| 龙山县| 特克斯县| 蚌埠市| 安宁市| 英吉沙县| 海安县| 信阳市| 鄂州市| 自贡市| 双流县| 白玉县| 易门县| 石棉县| 苍南县| 孟连| 霍州市| 且末县| 通海县| 烟台市| 阿鲁科尔沁旗| 河南省| 法库县| 武胜县| 河西区|