无法按照官方教程在AWS EC2上安装mongoDB

Jia*_* Xu 2 amazon-ec2 mongodb amazon-web-services

我尝试在我的 AWS EC2 实例上安装 mongoDB。

Linux版本是:

NAME="Amazon Linux"
VERSION="2023"
ID="amzn"
ID_LIKE="fedora"
VERSION_ID="2023"
PLATFORM_ID="platform:al2023"
PRETTY_NAME="Amazon Linux 2023"
ANSI_COLOR="0;33"
CPE_NAME="cpe:2.3:o:amazon:amazon_linux:2023"
HOME_URL="https://aws.amazon.com/linux/"
BUG_REPORT_URL="https://github.com/amazonlinux/amazon-linux-2023"
SUPPORT_END="2028-03-01"
Run Code Online (Sandbox Code Playgroud)

我按照官方教程进行操作:https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-amazon/

但当我尝试时出现错误yum install -y mongodb-org::

Last metadata expiration check: 0:24:24 ago on Wed May 24 21:06:16 2023.
Error:
 Problem: conflicting requests
  - package mongodb-org-6.0.0-1.amzn2.x86_64 requires mongodb-org-database, but none of the providers can be installed
  - package mongodb-org-6.0.1-1.amzn2.x86_64 requires mongodb-org-database, but none of the providers can be installed
  - package mongodb-org-6.0.2-1.amzn2.x86_64 requires mongodb-org-database, but none of the providers can be installed
  - package mongodb-org-6.0.3-1.amzn2.x86_64 requires mongodb-org-database, but none of the providers can be installed
  - package mongodb-org-6.0.4-1.amzn2.x86_64 requires mongodb-org-database, but none of the providers can be installed
  - package mongodb-org-6.0.5-1.amzn2.x86_64 requires mongodb-org-database, but none of the providers can be installed
  - package mongodb-org-6.0.6-1.amzn2.x86_64 requires mongodb-org-database, but none of the providers can be installed
  - package mongodb-org-database-6.0.0-1.amzn2.x86_64 requires mongodb-org-server, but none of the providers can be installed
  - package mongodb-org-database-6.0.1-1.amzn2.x86_64 requires mongodb-org-server, but none of the providers can be installed
  - package mongodb-org-database-6.0.2-1.amzn2.x86_64 requires mongodb-org-server, but none of the providers can be installed
  - package mongodb-org-database-6.0.3-1.amzn2.x86_64 requires mongodb-org-server, but none of the providers can be installed
  - package mongodb-org-database-6.0.4-1.amzn2.x86_64 requires mongodb-org-server, but none of the providers can be installed
  - package mongodb-org-database-6.0.5-1.amzn2.x86_64 requires mongodb-org-server, but none of the providers can be installed
  - package mongodb-org-database-6.0.6-1.amzn2.x86_64 requires mongodb-org-server, but none of the providers can be installed
  - nothing provides libcrypto.so.10()(64bit) needed by mongodb-org-server-6.0.0-1.amzn2.x86_64
  - nothing provides libcrypto.so.10(OPENSSL_1.0.2)(64bit) needed by mongodb-org-server-6.0.0-1.amzn2.x86_64
Run Code Online (Sandbox Code Playgroud)

任何帮助,将不胜感激。

Ale*_*tro 5

编辑此内容并将其添加到此文件中:
/etc/yum.repos.d/mongodb-org-6.0.repo


[mongodb-org-6.0]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/amazon/2/mongodb-org/6.0/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-6.0.asc

// add this block below

[mongodb-org-AL2023]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/amazon/2023/mongodb-org/development/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-7.0.asc
Run Code Online (Sandbox Code Playgroud)

然后运行这个命令:

sudo yum install mongodb-org-database mongodb-org-database-tools-extra 
Run Code Online (Sandbox Code Playgroud)

它应该有效