在 aws 上安装 apache 时抛出错误

在 aws 上安装 apache 时抛出错误

当我尝试运行命令时

yum install -y httpd.x86_64

它会引发以下错误

Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
No package httpd.86_64 available.
Error: Nothing to do

我应该怎样做才能排除故障?

答案1

尝试安装标准 httpd 包

sudo yum update
sudo yum install httpd

相关内容