Install MongoDB
The easiest way to install MongoDB is to use a package manager or the pre-built binaries:
Package managers
If you use the Homebrew package manager, run:
$ brew update
$ brew install mongodb
If you use MacPorts you can install with:
$ sudo port install mongodb
This will take a while to install.
32-bit binaries
Note: 64-bit is recommended (if you have a 64-bit system).
$ curl http://downloads.mongodb.org/osx/mongodb-osx-i386-x.y.z.tgz > mongo.tgz
$ tar xzf mongo.tgz
Replace x.y.z with the current stable version.
64-bit binaries
$ curl http://downloads.mongodb.org/osx/mongodb-osx-x86_64-x.y.z.tgz > mongo.tgz
$ tar xzf mongo.tgz
Replace x.y.z with the current stable version.
Create a data directory
By default MongoDB will store data in /data/db, but it won't automatically create that directory. To create it, do:
$ mkdir -p /data/db
You can also tell MongoDB to use a different data directory, with the --dbpath option.
Run and connect to the server
First, start the MongoDB server in one terminal:
$ ./mongodb-xxxxxxx/bin/mongod
In a separate terminal, start the shell, which will connect to localhost by default:
$ ./mongodb-xxxxxxx/bin/mongo
> db.foo.save( { a : 1 } )
> db.foo.find()
Congratulations, you've just saved and retrieved your first document with MongoDB!
|
分享到:
相关推荐
本教程将详细介绍如何在多种操作系统上安装MongoDB,包括Windows、macOS和Linux。我们将涵盖下载、配置、启动和验证安装过程。 ### 1. MongoDB概述 MongoDB以其JSON-like的文档数据模型而闻名,这种模型允许存储...
1. 使用sudo apt-get update更新软件源,然后sudo apt-get install mongodb-server安装MongoDB。 2. 配置MongoDB服务,编辑/etc/mongod.conf文件,根据需求调整存储路径、端口等设置。 3. 启动MongoDB服务,使用命令...
MongoDB在Windows、Linux和macOS等操作系统上都有相应的安装包。在安装前,确保系统满足以下条件: 1. 操作系统:MongoDB支持64位的Windows Server 2008 R2或更高版本,以及各种Linux发行版和macOS。 2. 内存:推荐...
MongoDB的安装过程简单明了,适用于多种操作系统,包括Windows、Linux和macOS等。在这里,我们将深入探讨MongoDB的安装步骤、配置以及基本操作。 一、MongoDB的下载 在开始安装之前,你需要从MongoDB官方网站...
4. **启动MongoDB服务**: 在Linux或macOS上,运行`mongod`命令启动MongoDB服务。Windows用户可以使用"服务"管理工具启动MongoDB服务。 **二、MongoDB配置文件** MongoDB的配置文件通常名为`mongod.conf`,位于安装...
1. 在IntelliJ IDEA中,选择“File” -> “Settings”(或“Preferences” for macOS)。 2. 在设置界面,点击“Plugins”,然后在市场中搜索“MongoDB”。 3. 找到“mongo4idea”插件并点击“Install”进行安装,...
C:\Program Files\MongoDB\Server\4.2\bin\mongod.exe --install --config "C:\Program Files\MongoDB\Server\4.2\bin\mongod.cfg" net start MongoDB ``` 2. **Linux**:编辑`/etc/systemd/system/mongodb....
- apt-get install mongodb 或 yum install mongodb-server。 - 配置mongod服务,通常位于/etc/mongod.conf。 4. macOS安装: - 使用Homebrew,输入`brew install mongodb-community`。 三、配置MongoDB 1. ...
- macOS:可以使用Homebrew进行安装,命令行输入`brew install mongodb-community`。 三、配置MongoDB 安装完成后,需要配置MongoDB服务。在Windows上,可以通过服务管理器启动MongoDB服务;在Linux上,配置`/etc/...
- 添加官方APT仓库:`sudo apt-get install mongodb` - 启动MongoDB服务:`sudo systemctl start mongod` - **macOS平台**: - 使用Homebrew安装:`brew install mongodb-community` 2. **配置MongoDB** - **...
- Linux:解压下载的文件,然后通过命令行执行安装脚本(例如,sudo ./mongodb-linux-x86_64-<version>/bin/mongod --install)。 - macOS:解压下载的文件,将bin目录添加到PATH环境变量中。 3. **配置MongoDB**...
- Linux:解压.tgz文件,然后通过命令行进行安装,例如`sudo apt-get install -y mongodb-org`(Ubuntu/Debian)或`yum install mongodb-org`(CentOS/RHEL)。 - macOS:双击.dmg文件,将MongoDB拖入Applications...
节点REST API NodeAPI是基于顶级Node.js和Express.js与Mongoose.js进行MongoDB集成的REST API服务器实现。 访问控制在OAuth2orize和Passport.js的帮助下遵循OAuth...# Create directory for MongoDB data mkdir -p
- 使用包管理器安装(如Ubuntu的`sudo apt-get install mongodb-org`,CentOS的`sudo yum install mongodb-org`)。 - 配置/etc/mongod.conf文件,指定数据和日志路径。 - 通过`sudo systemctl start mongod`启动...
前言 MongoDB 是一个基于分布式文件存储的数据库,旨在为 web 应用提供可扩展的高性能数据存储解决方案。本文主要介绍的是关于在mac中安装卸载mongoDB数据库的方法,更多关于mongoDB的使用...$ brew install mongodb
对于Windows、Linux或macOS,MongoDB均有官方发行版。 - **下载与安装**:访问MongoDB官网下载适合你操作系统的版本,并按照官方指南完成安装过程。 ##### 2. 运行MongoDB - **启动服务**:安装完成后,可以在...
- **macOS**:使用Homebrew输入`brew install mongodb-community@X.Y`(X.Y代表MongoDB的版本号)。 4. **配置MongoDB**:在安装目录下的`bin`目录中,有一个名为`mongod`的可执行文件,这是MongoDB的服务启动程序...
在本案例中,我们讨论的是 macOS 平台上的 Mongoose 安装包,版本号为 4.0.9,文件名为 "mongodb-osx-ssl-x86_64-4.0.9.tgz"。 这个压缩包文件是专为 macOS 设计的,它包含了适用于 64 位架构的 SSL(Secure ...
> **注意**:在 Windows 上安装 MongoDB 时,确保已经安装了 Visual C++ Redistributable for Visual Studio 2017,因为 MongoDB 需要这个运行库。 #### MongoDB 数据库基本概念 - **集合**(Collection):...
- 通过命令`sudo apt install mongodb`安装MongoDB。 3. **启动MongoDB服务**: - 使用`sudo systemctl start mongodb`启动MongoDB服务。 4. **设置MongoDB开机自启动**: - 执行`sudo systemctl enable ...