mongodb叢集搭建步驟

來源:互聯網
上載者:User

標籤:mongodb   mongod   mongos   

        搭建mongodb叢集很多次,每次都會或多、或少出現一些見鬼的問題,寫這邊部落格供以後參考。

本次是基於mongodb3.0進行叢集的搭建;搭建步驟如下:

1、設定作業系統的環境

echo "never">"/sys/kernel/mm/transparent_hugepage/enabled"echo "never">"/sys/kernel/mm/transparent_hugepage/defrag"ulimit -n 64000

2、設定檔的修改[mongod.conf]

 shards配置:port=27018、directoryperdb=true 、bind_ip=0.0.0.0 config配置:port=27019、bind_ip=0.0.0.0 monogs配置:mongos --configdb 192.168.12.150:27019 --logpath /var/log/mongodb/mongos.log  --pidfilepath /var/run/mongodb/mongos.pid --logappend --logRotate reopen --fo hosts配置:{shardone.mongodb.local,shardtwo.mongodb.local,shardthree.mongodb.local}添加上每台分區伺服器對應的IP地址的網域名稱解析

3、添加分區

>>mongo admin>>db.runCommand({addshard:"shardone.mongodb.local:27018",name:"shardone"})          --添加分區>>db.runCommand({addshard:"shardtwo.mongodb.local:27018",name:"shardtwo"})>>db.runCommand({addshard:"shardthree.mongodb.local:27018",name:"shardthree"})

分區伺服器盡量以網域名稱解析的方式,避免以後伺服器的ip地址變更

4、對資料庫啟動分區和添加片鍵

>>db.runCommand({"enablesharding":"mc_visit"})>>db.runCommand({"shardcollection":"mc_visit.mc_visit","key":{"visitdate":-1,"virus":1}})

5、沒有資料情況下修改片鍵

>>use config>>db.collections.find() --查看所有的片鍵>>db.chunks.find()      --查看已有分區的塊


mongodb叢集搭建步驟

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.