0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CentOS8.2でApacheのインストールがエラーになる

Posted at

個人的に詰まったのでメモ

# 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インストールを試みるとインストールができるようになっていた

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?