0%

Linux安装MongoDB

官方下的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