MongoDB 官网教程 下载 安装

时间:2023-12-31 08:17:56

官网:https://www.mongodb.com/

Doc:https://docs.mongodb.com/

Manual:https://docs.mongodb.com/manual/

安装教程:https://docs.mongodb.com/manual/installation/#tutorial-installation

MongoDB 的基本元素:

数据库  --  类比 MySQL 中的数据库
集合 -- 类比 MySQL 中的数据表
文档 -- 类比 MySQL 中的记录
键值对 -- 类比于 MySQL 中的 field

MongoDB 服务在安装成功后会自动开启

手动开启和关闭的方法

以管理员身份打开 cmd
> net start mongodb # 启动 MongoDB 服务
> net stop mongodb # 关闭 MongoDB 服务