Detailed explanation of MongoDB cluster fragment configuration

Source: Internet
Author: User
Tags config log mkdir mongodb

Create the necessary file directory

Mkdir-p/usr/local/mongo/shard/s0

Mkdir-p/usr/local/mongo/shard/s1

Mkdir-p/USR/LOCAL/MONGO/SHARD/S2

Mkdir-p/usr/local/mongo/shard/log

Mongod--shardsvr--port 20000--dbpath=/usr/local/mongo/shard/s0--fork --directoryperdb

Mongod--shardsvr--port 20001--dbpath=/usr/local/mongo/shard/s1--fork --directoryperdb

Mongod--shardsvr--port 20002--dbpath=/usr/local/mongo/shard/s2--fork --directoryperdb

#Configure Config Server

Mkdir-p/usr/local/mongo/shard/config

Mongod--configsvr--port 30000--dbpath=/usr/local/mongo/shard/config--fork Config.log--directoryperdb

#Start Router Server

MONGOs--port 40000--configdb localhost:30000--fork

Mongos> Db.runcommand ({addshard: "localhost:20000"})

{"shardadded": "shard0000", "OK": 1}

Mongos> Db.runcommand ({addshard: "localhost:20001"})

{"shardadded": "shard0001", "OK": 1}

Mongos> Db.runcommand ({enablesharding: "Andylhz"})

{"OK": 1}

Mongos> Db.runcommand ({shardcollection: "Andylhz.users", Key:{_id:1}})

{"collectionsharded": "Andylhz.users", "OK": 1}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.