MongoDB权威指南--阅读笔记(三)

MongoDB单机伪分布式
这里写图片描述

启动mongos时,config server的配置信息不得使用localhost、127.0.0.1,否则添加其它机器的shard时,会出现错误提示:
“can’t use localhost as a shard since all shards need to communicate. either use all shards and configdbs in localhost or all in actual IPs host: xxxxx isLocalHost”

以新的config server启动mongos,也需要重启config server,否则会有错误提示:
“could not verify config servers were active and reachable before write”

 mongod --dbpath ~/dumps/mongoconfig/ --configsvr --port 20000 --logpath ~/dumps/mongoconfig/config.log &

 mongos --logpath ~/dumps/mongos/mongos.log --port 30000 --configdb **192.168.1.110:20000** &

mongod --shardsvr --replSet shard1 --port 10001 --dbpath ~/dumps/rs1/ --logpath ~/dumps/rs1/rs1.log &

mongod --shardsvr --replSet shard2 --port 10002 --dbpath ~/dumps/rs2/ --logpath ~/dumps/rs2/rs2.log &

mongod --shardsvr --replSet shard3 --port 10003 --dbpath ~/dumps/rs3/ --logpath ~/dumps/rs3/rs3.log &
mongo localhost:30000
MongoDB shell version: 2.6.10
connecting to: localhost:30000/test
mongos> use admin
switched to db admin
mongos> db.runCommand({enableshading:"testdb"})
{ "ok" : 0, "errmsg" : "no such cmd: enableshading", "code" : 59 }
mongos> db.runCommand({enablesharding:"testdb"})
{ "ok" : 1 }
mongos> 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值