> For the complete documentation index, see [llms.txt](https://hezhiqiang-1.gitbook.io/linux/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hezhiqiang-1.gitbook.io/linux/soft/mongodb-ops.md).

# Mongodb 安装

* [安装](https://hezhiqiang-1.gitbook.io/linux/soft/pages/-LyNL-5KOTa91hIHlX_n#安装)
* [启动](https://hezhiqiang-1.gitbook.io/linux/soft/pages/-LyNL-5KOTa91hIHlX_n#启动)
* [脚本](https://hezhiqiang-1.gitbook.io/linux/soft/pages/-LyNL-5KOTa91hIHlX_n#脚本)

## 安装

安装步骤如下：

（1）下载并解压到本地

进入官网下载地址：<https://www.mongodb.com/download-center#community> ，选择合适的版本下载。

我选择的是最新稳定版本 3.6.3：<https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.6.3.tgz>

我个人喜欢存放在：`/opt/mongodb`

```
wget -O /opt/mongodb/mongodb-linux-x86_64-3.6.3.tgz https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.6.3.tgz
cd /opt/mongodb
tar zxvf mongodb-linux-x86_64-3.6.3.tgz
mv mongodb-linux-x86_64-3.6.3 mongodb-3.6.3
mkdir -p /data/db
```

## 启动

**启动 mongodb 服务**

```
cd /opt/mongodb/mongodb-3.6.3/bin
./mongod --dbpath=/data/db
```

**启动 mongodb 客户端**

```
cd /opt/mongodb/mongodb-3.6.3/bin
./mongo
```

## 脚本

\| [安装脚本](https://github.com/dunwu/linux-tutorial/tree/master/codes/linux/soft) |
