如何在Amazon Linux 2(ARM64)上安装PHP 8.1

发布于 2025-01-24 16:26:15 字数 247 浏览 0 评论 0 原文

我正在尝试在Graviton 2(ARM64)EC2实例上安装PHP 8.1

。当我使用此存储库时,百胜更新充斥着404个错误,例如

http://rpms.remirepo.net/enterprise/7/safe/aarch64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found

在此类实例上安装PHP 8.1的相对简单方法?

I'm trying to install php 8.1 on a Graviton 2 (ARM64) EC2 instance thats running Amazon Linux 2.

All of the guides I've followed use remi-release-7.rpm. When I use this repository, yum updates are flooded with 404 errors like

http://rpms.remirepo.net/enterprise/7/safe/aarch64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found

Is there a relatively easy way to install PHP 8.1 on this type of instance?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岛徒 2025-01-31 16:26:15

您可以从源构建它。我能够使用以下步骤在Graviton(Aarch64,5.10内核)上的Amazon Linux 2上安装它。确保将WGET命令中的URL更新为最新的可用版本或您想要构建的内容。

sudo yum -y groupinstall "Development Tools" "Development Libraries"
sudo yum -y install libxml2-devel sqlite-devel
wget https://www.php.net/distributions/php-8.1.5.tar.xz
tar -xf php-8.1.5.tar.xz
cd php-8.1.5/
./configure
make -j$(nproc)
sudo make -j$(nproc) install

另外,您可以只使用一个容器。您可以在这里从Amazon ECR获得一个:

docker pull public.ecr.aws/docker/library/php:8.1-rc-apache-bullseye

You can build it from source. I was able to install it on Amazon Linux 2 on Graviton (aarch64, 5.10 kernel) using the steps below. Be sure to update the url in the wget command to the latest available version or what ever you want to build.

sudo yum -y groupinstall "Development Tools" "Development Libraries"
sudo yum -y install libxml2-devel sqlite-devel
wget https://www.php.net/distributions/php-8.1.5.tar.xz
tar -xf php-8.1.5.tar.xz
cd php-8.1.5/
./configure
make -j$(nproc)
sudo make -j$(nproc) install

Alternatively, you could just use a container. You can get one from Amazon ECR here: https://gallery.ecr.aws/docker/library/php

docker pull public.ecr.aws/docker/library/php:8.1-rc-apache-bullseye
檐上三寸雪 2025-01-31 16:26:15

Amazon Linux 2现在对包括ARM在内的PHP 8.1拥有内置支持!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文