linux 环境
下载
wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-debian81-3.4.4.tgz
1 | tar zxvf mongodb*.tar |
配置文件
1 | dbpath=/home/cs/Download/mongodb/data #数据库路径 |
启动
1 | cs@debian:/opt/mongodb-3.4.4/bin$ ./mongod --config /opt/mongodb-3.4.4/mongodb.conf |
后台运行
1 | mongo -f mongo.conf & |
使用 fork 必须加上logpath
1 | mongo --fork --logpath=log/mongodb.log |
多条命令执行时 && 可以把 fork配置到conf
1 | echo { \ |
启动
mongo-start.sh
1 | #!/bin/bash |
win 环境
下载 http://dl.mongodb.org/dl/win32/x86_64
zip 免安装包
启动
1 | E:\MongoDB\Server\bin>mongod.exe --config E:\MongoDB\mongo.conf |
mongo.conf
1 | dbpath=E:\MongoDB\data #数据库路径 |
打开 http://127.0.0.1:27017/
It looks like you are trying to access MongoDB over HTTP on the native driver port.
安装服务
管理员cmd
E:\MongoDB\Server\bin>mongod --install --serviceName "MongoDB" --config
“E:\MongoDB\mongo.conf”
E:\MongoDB\Server\bin> net start MongoDB
删除服务
sc delete MongoDB