简体   繁体   中英

MongoDB Sharding

I am new to mongodb. I want to create a Shard Cluster with single Replica Set,In future, if I want to want to extend it will be easy.

Now, Have 4 Ubuntu machine, 1 will work as Router(mongos) and remaining 3 as used as replica set(Primary,Secondary,Secondary).

# mongod.conf

# for documentation of all options, see:
#   http://docs.mongodb.org/manual/reference/configuration-options/

# Where and how to store data.
storage:
  dbPath: /mnt/md0/data/mongodb/dbdata/
  journal:
    enabled: true
#  engine:

#  wiredTiger:

# where to write logging data.
systemLog:
  destination: file
  logAppend: true
  path: /mnt/md0/data/mongodb/logs/mongod.log

# network interfaces
net:
  port: 27017
  bindIp: 127.0.0.1

#processManagement:

security:
  keyFile: /opt/mongo/mongo-keyfile

#operationProfiling:

replication:
  replSetName: rs0

sharding:
  clusterRole: configsvr

## Enterprise-Only Options:

#auditLog:

#snmp:**strong text**


#mongos.conf

 # where to write logging data.

systemLog:
  destination: file
  logAppend: true
  path: /var/log/mongodb/mongos.log

# network interfaces
net:
  port: 27017
  #bindIp: 127.0.0.1,192.10.10.10

security:
  keyFile: /opt/mongo/mongo-keyfile

sharding:
  configDB: rs0/Primary_Rs:27017,Secondary1_Rs:27017,Secondary2_Rs:27017

When I am trying to add the Shard in mongos console, I am getting error

Please help me to resolve me the issue. Thank you In Advance

看到您的conf文件中有2个分片部分...和第一个配置clusterRole作为configsvr =>删除/注释这个,然后重试

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM