欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

centos7配置MongoDB镜像

程序员文章站 2022-03-06 13:01:57
...

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

大家也可以打开阿里云官方镜像站:https://developer.aliyun.com/mirror/查看详细说明。

配置方法

安装(使用yum源安装)

在/etc/yum.repos.d 创建一个mongodb-org.repo源文件

vi /etc/yum.repos.d/mongodb-org.repo

centos7配置MongoDB镜像

添加内容如下:(配置偶数版本,奇数版不适合生产使用)

[mongodb-org]

name = MongoDB Repository

baseurl = https://mirrors.aliyun.com/mongodb/yum/redhat/$releasever/mongodb-org/3.6/x86_64/

gpgcheck = 1

enabled = 1

gpgkey = https://www.mongodb.org/static/pgp/server-3.6.asc

centos7配置MongoDB镜像

最后执行命令安装MongoDB

 yum install mongodb-org

centos7配置MongoDB镜像

Is this OK?输入y

centos7配置MongoDB镜像

centos7配置MongoDB镜像