一、MongoDB
MongoDB Server 安装
优秀文章:
link1
link2
MongoDB 是一个文档数据库,旨在简化开发和扩展。
下载
官网(社区版) :https://www.mongodb.com/try/download/community
下载完后一路安装即可。
添加环境变量
开启 mongodb服务
net start MongoDB
关闭 mongodb服务
net stop MongoDB
开启后可以输入网址:
http://localhost:27017/
MongoDB Client
MongoDB 的客户端由多种形式:
mongodb 默认客户端:
mongodb-compass:可视化工具
Robo 3T:
等等