Last metadata expiration check: 1:20:54 ago on Wed 07 Jun 2023 10:09:07 PM CST. All matches were filtered out by exclude filtering for argument: nginx Error: Unable to find a match: nginx
时间: 2024-02-05 16:05:14 浏览: 114
metadata-parser:Chef Cookbook metadata.rb解析器
这个错误提示表明 `nginx` 包未能在可用的仓库中找到,可能是因为你的系统没有启用正确的仓库或者启用的仓库中没有 `nginx` 包。
你可以尝试更新并启用 `epel-release` 仓库,该仓库包含了大量的常用软件包,其中就包括 `nginx`。你可以使用以下命令在 CentOS 8 上安装 `epel-release` 仓库:
```
sudo dnf install epel-release
```
安装完成后,你可以使用以下命令安装 `nginx`:
```
sudo dnf install nginx
```
如果仍然提示找不到 `nginx` 包,你可以检查你的系统中是否存在其他仓库,或者尝试手动下载并安装 `nginx` 包。
希望这些信息能够帮助你解决问题。
阅读全文