安装mongodb并配置
下载网址http://dl.mongodb.org/dl/win32/x86_64
mongodb-win32-x86_64-2008plus-ssl-v3.4-latest.zip
解压d盘命名mongodb
mongodb文件夹下新建data文件夹
data文件夹下分别建立db,log两个文件夹
在log文件夹下创建一个日志文件mongodb.log
mongodb文件夹下新建mongod.cfg,内容为
systemLog:
destination: file
path: D:\mongodb\data\log\mongodb.log
storage:
dbPath: D:\mongodb\data\db
cmd命令行安装
D:\mongodb\bin>mongod -dbpath "D:\mongodb\data\db"
安装完成之后打开http://127.0.0.1:27017/
看到
It looks like you are trying to access MongoDB over HTTP on the native driver port.
说明已经安装成功了。
cmd安装MongoDB服务,以管理员身份运行
"D:\mongodb\bin\mongod.exe" --config "D:\mongodb\mongod.cfg" --install
如果想服务自动启动
sc.exe create MongoDB binPath= "D:\mongodb\bin\mongod.exe --service --config=\"D:\mongodb\mongod.cfg\"" DisplayName= "MongoDB" start= "auto"
开启服务
net start MongoDB
停止MongoDB服务使用以下命令:
net stop MongoDB
删除MongoDB服务使用以下命令:
"D:\MongoDB\bin\mongod.exe" --remove