English 中文(简体)
MongoDB 变革之路
原标题:MongoDB Path Change?
  • 时间:2011-10-17 20:18:01
  •  标签:
  • mongodb

我的服务器由于电力故障和几个令人振奋的二手,我认为我失去了所有微型信贷银行的数据。 我当时认识到,当服务器重新启用时,没有——dbpath选择,就自动重新启用。

What I can t figure out is why, even though my mongodb.conf has the dbpath set to /var/lib/mongodb, mongo looked for the db files in /data/db on startup. Can anyone shed some light on this?

感谢!

最佳回答

<代码>/数据/db是<代码>mongod<>/code>的缺省道路,如无选择,将查询数据文档。 您的开端文字是否指示<代码>mongod装上正确的汇辑? 否则,这将解释这种行为。

问题回答

您最后一次更新Mongod关于你的系统? 以及你如何更新?

如何安装/更新 Mongod 可能发生的情况是,要么是/etc/init.d/mongo的文字,要么是/etc/mongo。 书面文件可能已经过时。

或者有些人很久以前就编辑了这些档案,这是Mongo第一次重新启用,现在它会突然出现变化。

我已经看到,这两件事中有一件事都是在很长一段时间内发生的(但如果你再次使用基因组,你可能看到这种情况发生)。

贵处如何使用?

保持这些档案备份的良好想法......

您应明确确保,蒙戈邦的用稿包括数据目录的全方位路径名称。 这里是我们在生产部署中所用东西的幻灯:

ulimit -s unlimited

MONGO_USER=mongo
MONGO_HOME=/opt/mongo
MONGO_DATA=/san2/data
MONGO_LOGS=/home/mongo/logs


start() {
    su $MONGO_USER -c "$MONGO_HOME/bin/mongod  --master --fork --logpath $MONGO_LOGS/mongodb.log --logappend --dbpath $MONGO_DATA  --maxConns 2400"
}

www.un.org/chinese/sc/presidency.asp 其中最有可能被置于<代码>/数据/db的缺省道路上,而不是在你开始人工操作时所选定的一条。





相关问题
Access DB Ref MongoDB

Whats the best way to access/query a DB Ref: UPDATE: users: name, groupref : {$ref:"groups",$id:"ObjectId ..." } } groups: name, topic, country,...,.. Assumption is that user belongs to only one ...

MongoDB nested sets

What re the best practices to store nested sets (like trees of comments) in MongoDB? I mean, every comment can have a parent comment and children-comments (answers). Storing them like this: { ...

MongoMapper and migrations

I m building a Rails application using MongoDB as the back-end and MongoMapper as the ORM tool. Suppose in version 1, I define the following model: class SomeModel include MongoMapper::Document ...

MongoDB takes long for indexing

I have the following setup: Mac Pro with 2 GB of RAM (yes, not that much) MongoDB 1.1.3 64-bit 8 million entries in a single collection index for one field (integer) wanted Calling .ensureIndex(...) ...

Storing and accessing large amounts of data

My application creates pieces of data that, in xml, would look like this: <resource url="someurl"> <term> <name>somename</name> <frequency>somenumber</...

热门标签