如果你正在寻找一种现代的、高效的NoSQL文档数据库,那么MongoDB可能是你想要的。它的管理容易、可扩展性高,最重要的是,对于开发人员来说,MongoDB比许多其它数据库更加友好。
一、下载MongoDB并安装至本地计算机
首先,你需要访问官方网站下载MongoDB的最新版本。点击下载链接之后,选择对应的安装包下载,下载完成后,运行安装包开始安装。
1、选择默认安装路径
C:\Program Files\MongoDB\
2、添加MongoDB的bin目录至环境变量中,方便在命令行中使用MongoDB
C:\Program Files\MongoDB\Server\4.4\bin\;
二、配置MongoDB
在安装MongoDB之后,你需要进行一些配置
1、创建数据存储目录
md C:\data\db
2、启动MongoDB服务
mongod
现在你已经启动了MongoDB服务,接下来需要使用Mongo Shell来对数据库进行管理。
三、使用Mongo Shell连接MongoDB
Mongo Shell是MongoDB的命令行工具,可以用它连接MongoDB并对数据进行操作。
1、启动Mongo Shell
mongo
启动完后,你应该可以看到以下类似的输出:
MongoDB shell version v4.4.4 connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb Implicit session: session { "id" : UUID("a45e9305-032d-446c-a1de-d5796d7a85ef") } MongoDB server version: 4.4.4 --- The server generated these startup warnings when booting: 2021-03-01T09:14:23.172+08:00: Access control is not enabled for the database. Read and write access to data and configuration is unrestricted 2021-03-01T09:14:23.173+08:00: You are running this process as the root user, which is not recommended 2021-03-01T09:14:23.173+08:00: This server is bound to localhost. Remote systems will be unable to connect to this server. Start the server with --bind_ip to specify which IP addresses it should serve responses from, or with --bind_ip_all to bind to all interfaces. If this behavior is desired, start the server with --bind_ip 127.0.0.1 to disable this warning 2021-03-01T09:14:23.178+08:00: Listening on all addresses 2021-03-01T09:14:23.179+08:00: Listening on port 27017 2021-03-01T09:14:23.179+08:00: warning: bind_ip of 127.0.0.1 is unnecessary; listens on all ips by default --- >
2、查看数据库列表
show dbs
这将列出你连接到的MongoDB实例上所有的数据库,如下所示:
admin 0.000GB config 0.000GB local 0.000GB
四、常用命令
MongoDB提供了许多命令,这里列出了一些常用命令以供参考。
1、创建数据库
use <database_name>
2、查看当前使用的数据库
db
3、查看指定数据库下的所有集合
show collections
4、插入一条数据
db.<collection_name>.insertOne({key1:value1, key2:value2})
5、查询数据
db.<collection_name>.find()
五、总结
本文已经介绍了Windows MongoDB安装及配置指南,并列出了一些常用命令以供参考。MongoDB是一个强大的NoSQL文档数据库,它易用、扩展性好,值得开发人员深入学习和使用。