须知:版本号x.y.z,看y:偶数版为稳定版,奇数版为开发版
(1)下载zip,解压
1 https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.4.zip
建立data文件夹,与bin同级,在data下建立db文件夹:/data/db
启动MongoDB:
[1] 启动cmd,进入bin目录,输入
1 mongod --dbpath=..\data\db
[2] 配置conf文件,与/bin同级,新建/conf/mongod.conf,输入
1 storage: 2 # The directory where the mongod instance stores its data. Default Value is "\data\db" on Windows. 3 dbPath: C:\bed\mongodb-win32-x86_64-windows-6.0.4\data\db
注意,第2行和第3行,必须是4个空格,不能用Tab,否则会报错。
在cmd输入
1 mongod -f ..\conf\mongod.conf
(2)连接MongoDB
下载monosh(好像只有mongodb 6.0以上版本需要下载),解压
1 https://downloads.mongodb.com/compass/mongosh-1.7.1-win32-x64.zip
解压好后,将bin目录配置到系统变量Path
cmd进入mongosh的bin目录,输入
1 mongosh
三个默认库:
(3)三个概念
数据库 database、集合 collection、文档 document
T_T 坚持到底
标签:bin,mongod,MongoDB,db,data,conf,6.0,安装 From: https://www.cnblogs.com/iqemul/p/17148209.html