mongodb叢集分區部署實踐

來源:互聯網
上載者:User

第一步.啟動相應的Mongod進程

mongod --fork --slave  --port 27017 --replSet mySet --rest --dbpath /data/dbmongo/shard11 --logpath /data/dbmongo/shard11.logmongod --fork --slave  --port 27018 --replSet mySet --rest --dbpath /data/dbmongo/shard12 --logpath /data/dbmongo/shard12.logmongod --fork --slave  --port 27019 --replSet mySet --rest --dbpath /data/dbmongo/shard13 --logpath /data/dbmongo/shard13.logmongod --fork --slave  --port 27020 --replSet mySet --rest --dbpath /data/dbmongo/shard14 --logpath /data/dbmongo/shard14.log

第二步.初始化 replica set

>config = {_id:'mySet',members:[{_id:0, host:'192.168.1.111:27017'},{_id:1, host:'192.168.1.112:27018'},{_id:1, host:'192.168.1.113:27019'},{_id:2, host:'192.168.1.114:27020'}}]}>rs.initiate(config);>rs.status();

第三步.配置一台Config Servers:

192.168.1.100mongod --fork --configsvr --port 20000 --rest --dbpath /data/dbmongo/config --logpath /data/dbmongo/config/config.log 

第四步.配置一台Route Servers
mongos -fork --port 30000 --chunkSize 1 --configdb "192.168.1.100:20000" --logpath /data/dbmongo/mongos.log

第五步.Configuring the shard Cluster 串連到mongos進程,並切換到admin資料庫做以下配置

192.168.1.100>mongo 192.168.1.100:30000>use admin>db.runCommand({addshard:'mySet/192.168.1.115:27021,192.168.1.116:27022'});>db.runCommand({enablesharding:'test'});>db.runCommand({listshards:1});>printShardingStatus();>db.runCommand({shardcollection:'test.test',key:{_id:1},unique:true});

第六步.測試

>for(var i=1;i<=2011;i++)b.test.save({id:i,value1:"1234567890",value2:"1234567890",value3:"1234567890",value4:"1234567890"});



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.