CentOS6.2 下载安装配置 MongoDB 3.0.4
CentOS6.2 下载安装配置 MongoDB 3.0.4
1.下载地址:wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.4.tgz
2.解压安装
tar -zxvf mongodb-linux-x86_64-3.0.4.tgz
mv mongodb-linux-x86_64-3.0.4 mongodb
cd mongodb
export PATH=<mongodb-install-directory>/bin:$PATH
mkdir -p data/db
mkdir logs
vim ./bin/mongodb.conf</mongodb-install-directory>
内容如下:
port=27017
dbpath=/opt/mongodb/data/db
logpath=opt/mongodb/log/mongodb.log
logappend=true
fork=true
:wq保存退出
3. 启动
mongod -f ./bin/mongodb.conf
4.启动成功
about to fork child process, waiting until server is ready for connections.
forked process: 30406
child process started successfully, parent exiting
5.常见问题
- ERROR: child process failed, exited with error number 1
更多MongoDB相关教程见以下内容:
MongoDB 的详细介绍:请点这里
MongoDB 的下载地址:请点这里