linux 安装mongodb
Posted 找到属于自己的天空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 安装mongodb相关的知识,希望对你有一定的参考价值。
Linux 安装mongodb
1.下载mongodb linux
wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-amazon-3.2.6.tgz
tar -zxvf mongodb3.2.6.tgz解压
解压后的目录
bsondump mongo mongod mongodump mongoexport mongofiles mongoimport mongooplog mongoperf mongorestore mongos mongostat mongotop
2.新建mongodb位置
mkdir mongodb_test
cd mongodb_test
mkdir data //数据库存放位置
mkdir log // 数据库日志
mkdir conf//mongodb配置文件
在conf新建mongod.conf配置文件
cd conf
vim mongod.conf
port:10000//端口
dapath=data//数据库路径位置
logpath=log/mongodb.log//日志输入位置
fork=true//linux启动一个后台服务(window下无效)
mkdir bin //mongodb 执行命令
3.将解压的mongod 和mongo copy到bin路径上
cp ../mongodb3.2.6/bin/mongod bin/
cp ../mongodb3.2.6/bin.mongo bin/
4.开启服务:
./bin/mognod -f conf/mongodb.conf(启动服务端)
about to fork child process, waiting until server is ready for connections.
forked process: 5716
child process started successfully, parent exiting
看到这个信息表示mongo服务器启动成功
5.用客户端连接mognodb服务
./bin/mongo 127.0.0.1:1000/test
启动成功
use admin
6.关闭服务
db.shutdownServer()
以上是关于linux 安装mongodb的主要内容,如果未能解决你的问题,请参考以下文章