一、使用问题记录
1. mongodb3.0.6使用mongostat参数
>./mongostat -h 127.0.0.1:27017 -u root -p 123456 /authenticationDatabase admin -n 20
2. 程序或连接工具无法连接?
解决方案:新版的mongodb使用的
2.1 不验证身份安装
>use admin;
>db.createUser({user: "root",pwd: "123456",roles: [{ role: "root", db: "admin" }]});
>var schema = db.system.version.findOne({"_id" : "authSchema"});
>schema.currentVersion = 3;
>db.system.version.save(schema);
>db.removeUser("root")
>db.createUser({user: "root",pwd: "123456",roles: [{ role: "root", db: "admin" }]}); --重新创建用户,方可授权使用
二、副本集+分片参考资料
1.参考链接:http://www.lanceyan.com/tech/arch/mongodb_shard1.html