gpt4 book ai didi

linux - Elastic Beanstalk 上的 PostgreSQL (Amazon Linux 2)

转载 作者:行者123 更新时间:2023-12-03 09:45:49 26 4
gpt4 key购买 nike

使用上一代 Amazon Linux,我需要做的就是在 .ebextensions 中添加以下内容以使用 PostgreSQL:

packages:
yum:
postgresql93-devel: []

现在,当我使用以下平台在 EB 上部署时:
在 64 位 Amazon Linux 2/3.0.0 上运行的 Python 3.7

我在部署时收到以下错误:
[ERROR] Error occurred during build: Yum does not have postgresql93-devel available for installation

因此无法部署,因为我需要连接到 RDS 中的 PostgreSQL 数据库。

我需要在 .ebextensions 中做什么配置?

最佳答案

以下工作:

packages:
yum:
amazon-linux-extras: []

commands:
01_postgres_activate:
command: sudo amazon-linux-extras enable postgresql10
02_postgres_install:
command: sudo yum install -y postgresql-devel

关于linux - Elastic Beanstalk 上的 PostgreSQL (Amazon Linux 2),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61148791/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com