MongoDB 安装

安装环境

  • Fedora 29

安装步骤

  1. 安装 mongodbmongodb-server
  2. 启动服务

安装 MongoDB 和 MongoDB-Server

1
sudo dnf install mongodb mongodb-server

启动服务

启动 mongod 服务

1
sudo systemctl start mongod.service

设置开机自动启动

1
sudo systemctl enable mongod.service