在centos系统上安装mongodb数据库
本文章基于centos8系统;
如何查看当前系统是centos的那个版本
终端输入命令
cat /etc/redhat-release
-
开始安装官网当前的数据库版本6.0; 查看官方文档
-
创建 mongodb yum 源头,写入基本信息
vim /etc/yum.repos.d/mongodb-org-6.0.repo
[mongodb-org-6.0]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/6.0/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-6.0.asc
- 安装最新版本
sud