环境搭建:全面详尽的 MongoDB Shell & MongoDB Server介绍、安装、验证与配置指南(以 Windows 系统为主)
# 安装MongoDB Server
## 在Ubuntu系统上安装MongoDB
```bash
# 添加MongoDB官方仓库
echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu $(lsb_release -cs)/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
# 导入公钥
sudo apt-get install gnupg
wget https://www.mongodb.org/static/pgp/server-4.4.asc
sudo apt-key add server-4.4.asc
# 安装MongoDB
sudo apt-get update
sudo apt-get install mongodb-org
# 启动MongoDB服务
sudo service mongodb start
在Windows系统上安装MongoDB
- 访问MongoDB官方下载页面:https://www.mongodb.com/try/download/community
- 选择对应的系统版本(32位或64位),下载MSI安装程序。
- 运行下载的MSI文件开始安装。
- 按照安装向导的指示完成安装过程。
在macOS系统上安装MongoDB
- 访问MongoDB官方下载页面:https://www.mongodb.com/try/download/community
- 选择对应的系统版本(macOS),下载DMG安装文件。
- 打开DMG文件,将MongoDB放入
Applications
文件夹。 - 运行MongoDB,根据提示完成安装。
验证MongoDB安装
在命令行中输入以下命令来验证MongoDB是否正确安装并运行:
# 在Ubuntu/Linux系统
mongo --eval 'db.runCommand({ connectionStatus: 1 })'
# 在Windows系统
mongod --eval "db.runCommand({ connectionStatus: 1 })"
# 在macOS系统
mongod --eval "db.runCommand({ connectionStatus: 1 })"
如果MongoDB安装成功,你将看到类似于以下的输出信息,表明MongoDB服务正在运行:
{
"authInfo": {
"authenticatedUsers": [],
"authenticatedUserRoles": []
},
"ok": 1
}
配置MongoDB
编辑MongoDB配置文件(通常位于/etc/mongod.conf
或C:\Program Files\MongoDB\Server\<version>\bin\mongod.cfg
),根据需要进行自定义配置。
使用MongoDB Shell
MongoDB Shell是MongoDB自带的交互式JavaScript shell,可以用来管理MongoDB数据库。
在命令行中输入以下命令来启动MongoDB Shell:
# 在Ubuntu/Linux系统
mongo
# 在Windows系统
mongod
# 在macOS系统
mongod
一旦MongoDB Shell启动,你可以执行JavaScript命令来管理数据库。例如,连接到数据库、创建集合、插入文档、查询数据等。
// 在MongoDB Shell中执行
show dbs // 显示所有数据库
use myDatabase // 切换到myDatabase数据库
db.myCollection.insert({ name: 'MongoDB', type: 'database' }) // 向集合插入文档
db.myCollection.find() // 查询集合中的文档
以上代码
评论已关闭