- 首先新建一个配置文件,后缀名可以 .cfg或者.log 或者.txt 结尾。
- 配置文件里面填写以下内容(该文件可以是在磁盘任何位置):
systemLog:
destination: file
path: F:\data\log\mongod.log
storage:
dbPath: F:\data\db
- "F:\data\log\mongod.log" 是你想mongodb生成的配置文件数据的目录。
- "F:\data\db"是数据库的目录
- 以管理员身份运行cmd,键入以下命令:
{MongoDB安装目录下的bin文件夹}\mongod.exe --config "{配置文件的路径}" --install
- 完成以后一定要打开生成的文件看看,如果不是以下信息则证明新建MongoDB失败(路径按照你的走):
2017-12-27T08:36:02.266-0700 I CONTROL [main] Trying to install Windows service 'MongoDB'
2017-12-27T08:36:02.267-0700 I CONTROL [main] Service 'MongoDB' (MongoDB) installed with command line '"C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe" --config F:\data\log\mongod.txt --service'
2017-12-27T08:36:02.267-0700 I CONTROL [main] Service can be started from the command line with 'net start MongoDB'
- 然后继续键入 net start MongoDB 或者 sc start MongoDB.
-
net start MongDB 成功信息:
-
sc start MongoDB 成功信息:
全部完成以后键入{MongoDB安装目录\bin}\mongo开始你的NoSQL之旅。
礼毕。