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

问题描述 投票:0回答:2

我尝试在我的 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"

我按照官方教程进行操作: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

如有任何帮助,我们将不胜感激。

mongodb amazon-web-services amazon-ec2
2个回答
7
投票

编辑此内容并将其添加到此文件中:
/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

然后运行此命令:

sudo yum install mongodb-org-database mongodb-org-database-tools-extra 

应该有效


0
投票

MongoDB 现在支持 Amazon Linux 2023,并在其官方文档中提供了对我有用的安装说明:

https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-amazon/

© www.soinside.com 2019 - 2024. All rights reserved.