linux系统下安装mongodb

MongoDB 是一个基于分布式文件存储的数据库。由 C++ 语言编写。旨在为 WEB 应用提供可扩展的高性能数据存储解决方案。

MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。

选择版本

官网下载地址

选择对应版本并拷贝链接地址:
选择对应版本

下载安装

1
2
3
4
5
6
7
8
9
10
11
# 下载文件
wget https://public.yitong.com/mirrors/fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-4.2.8.tgz

# 解压文件
tar -zxvf mongodb-linux-x86_64-rhel70-4.2.8.tgz

# 移动文件
mv mongodb-linux-x86_64-rhel70-4.2.8 /usr/local/mongodb4

# 配置环境变量
export PATH=/usr/local/mongodb4/bin:$PATH

其他安装(仅用于开发调试)

1
2
3
4
5
6
7
8
9
10
11
官方提示:
For experiments only: Please do not use this tool in production or for anything that considers data storage to be 100% emphemeral.

安装运行:
npm install -g mongodb-runner;

# downloads mongodb and starts locally
mongodb-runner start;

# Shell opens connected to mongodb://localhost:27017
mongo;

linux系统下安装mongodb
http://example.com/20200727-mongodb/
作者
csorz
发布于
2020年7月27日
许可协议