I personally got stuck, so make a note
# dnf install httpd
error:
problem: 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
(To skip non-installable packages'--skip-broken'Or try adding'--nobest'Do not use only the best candidate packages)
It seems that the cause is that CentOS 8.2 2004 version of system-logos-httpd has not been uploaded to AppStream, remi, epel, Raven yet and can not be installed from the dnf command.
Download the rpm file from here https://rpmfind.net/linux/rpm2html/search.php?query=system-logos-httpd
Transfer to / home / hogehome with FTP tool and install
# rpm -ivh centos-logos-httpd-80.5-2.el8.noarch.rpm
When I tried to install Apache again, I was able to install it.
Recommended Posts