Linux

Fresh Red Hat Enterprise Linux 無法使用 yum 安裝 httpd

  • February 4, 2011

我正在嘗試在新的紅帽伺服器中安裝 LAMP 堆棧,但 yum 行為不端。作為linux文盲,我不知所措。

$yum install httpd
Loaded plugins: security
Setting up Install Process
No package httpd available.
Nothing to do

我的百勝配置

$ cat /etc/yum.conf
[main]
cachedir=/var/cache/yum
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
distroverpkg=redhat-release
tolerant=1
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1 

# Note: yum-RHN-plugin doesn't honor this.
metadata_expire=1h

# Default.
# installonly_limit = 3

# PUT YOUR REPOS HERE OR IN separate files named file.repo
# in /etc/yum.repos.d

yum.repos.d 目錄中的其他內容

$ ls -lah /etc/yum.repos.d/
total 12K
drwxr-xr-x  2 root root 4.0K Feb  4 01:15 .
drwxr-xr-x 59 root root 4.0K Feb  4 01:28 ..
-rw-r--r--  1 root root  561 Mar 10  2010 rhel-debuginfo.repo

會發生什麼?我認為“開箱即用”的 RHEL5.5 會更友好:)

我想到了。由於該伺服器是使用來自云的圖像自動創建的,因此它從未在紅帽網路上註冊過。之後,yum 又開始表現了。

您是否檢查了 RPM 是否位於您的 CD 或 ISO 中?

RHEL Server 5.5 有一個文件 /Server/httpd-2.2.3-43.el5.x86_64.rpm

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