Apache-2.4

如何在 RHEL 上啟用 EPEL 儲存庫,以便升級 Apache

  • February 10, 2021

我想在 RHEL 7 上將 Apache 升級到 2.4.46 或更高版本。我遵循的說明中的一個步驟是啟用 EPEL 儲存庫,就像這樣……

cd /etc/yum.repos.d && wget http://mirror.centos.org/centos/7/os/x86_64/repodata/repomd.xml`rpm -q --qf "%{VERSION}" $(rpm -q --whatprovides redhat-release)`.repo

鏡像不可用,所以我得到了 404,但我也嘗試使用其他鏡像,但仍然得到 404 錯誤。如何在 RHEL 7 上啟用 EPEL 儲存庫?

這是該教程中的一個非常討厭的錯誤。整個步驟是錯誤的,應該跳過。為了後代,它說:

  1. 啟用 EPEL 儲存庫

執行以下命令為 CentOS 7 啟用 EPEL 儲存庫。您可以在http://mirror.centos.org/centos/7/獲取所有 CentOS 7 儲存庫

# cd /etc/yum.repos.d && wget http://mirror.centos.org/centos/7/os/x86_64/repodata/repomd.xml`rpm -q --qf "%{VERSION}" $(rpm -q --whatprovides redhat-release)`.repo

epel-release軟體包隨附已啟用的儲存庫,因此尚不清楚他們在這裡的目標是什麼。無論如何,如果您已經安裝了epel-release,請繼續。


您可以在其首頁上找到有關安裝 EPEL 的準確官方說明。

引用自:https://serverfault.com/questions/1053130