mongodb集群遇到的错误[mongodb教程]
mongodb集群遇到的错误:
1、too many open files错误
这个很有可能是由于unix系统对程序的资源使用限制造成的
修改方法为修改/etc/security/limits.d/99-mongodb-nproc.conf
另外还有尽量不以root用户开启mongod实例等等
2、运行rs.initiate(config)的时候一直报错
config = { _id:"testrs", members:[{_id:0,host:"192.168.0.8:27017"},{_id:1,host:"192.168.0.9:27017"},
{_id:2,host:"192.168.0.10:27017"},
{_id:3,host:"192.168.0.11:27017"},
{_id:4,host:"192.168.0.12:27017"},
{_id:5,host:"192.168.0.13:27017"}]
}
rs.initiate(config);
运行rs.initiate(config)的时候一直报错
最后把admin和local数据库都删除了 就成功了
3、报错:
> db.csptest2.drop()
Fri Feb 22 08:48:24 uncaught exception: drop failed: {
"errmsg" : "exception: Error locking distributed lock for chunk drop. :: caused by :: 13651 error checking clock skew of cluster 10.0.0.1:39000,10.0.0.2:39000,10.0.0.3:39000 :: caused by :: 13650 clock skew of the cluster 10.0.0.1:39000,10.0.0.2:39000,10.0.0.3:39000 is too far out of bounds to allow distributed locking.",
"code" : 14022,
"ok" : 0
}
解决:
在mongo集群中,各个主机的时间需要一致,否则可能会提示以上错误。
将这台主机调整到和其他主机相差在十几秒后,即可执行成功:
> db.csptest2.drop()true
>
以上是 mongodb集群遇到的错误[mongodb教程] 的全部内容, 来源链接: utcz.com/z/528584.html