個人的に詰まったのでメモ
# dnf install httpd
エラー:
問題: package httpd-2.4.37-21.module_el8.2.0+494+1df74eae.x86_64 requires system-logos-httpd, but none of the providers can be installed
- conflicting requests
- package centos-logos-httpd-80.5-2.el8.noarch is filtered out by exclude filtering
(インストール不可のパッケージをスキップするには、'--skip-broken' を追加してみてください または、'--nobest' を追加して、最適候補のパッケージのみを使用しないでください)
###原因
system-logos-httpdのCentOS8.2 2004版がAppStream,remi,epel,Ravenにまだ上がっておらず、dnfコマンドからインストールできないことが原因かと思われる
###対処
ここからrpmファイルをダウンロード
https://rpmfind.net/linux/rpm2html/search.php?query=system-logos-httpd
FTPツールで/home/hogehomeに転送してインストール
# rpm -ivh centos-logos-httpd-80.5-2.el8.noarch.rpm
再度Apacheインストールを試みるとインストールができるようになっていた