官方下的MongoDB其实是绿色免安装的,http://www.mongodb.org/downloads
默认没有带配置文件,自己建一个:
vi mongodb.conf:
代码如下 | 复制代码 |
dbpath=/home/mongodata fork=true auth=true logpath=/home/server/mongodb-linux-i686-2.4.3/log.log logappend=true journal=true quiet=true |
启动:
代码如下 | 复制代码 |
/bin/mongod –config mongodb.conf |
如果报 exception in initAndListen std::exception: locale::facet::_S_create_c_locale name not valid, terminating
先执行 export LC_ALL=C mongodb
可能碰到的问题
mongoDB启动找不到data/db目录
data/db目录,必须建在mongoDB所在分区的根目录下!!
时间: 2024-10-14 10:23:36