在CentOs 7上使用yum时没有可用的程序包httpd

xmq68pz9  于 2022-11-07  发布在  其他
关注(0)|答案(2)|浏览(696)

当我尝试:

  • yum安装httpd*

我得到的错误:

Loaded plugins: changelog, fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.cloud.aliyuncs.com
 * extras: mirrors.cloud.aliyuncs.com
 * updates: mirrors.cloud.aliyuncs.com
No package httpd available.
Error: Nothing to do

enter image description here

yi0zb3m4

yi0zb3m41#

httpd包可以从默认的CentOS存储库、“base”和“updates”(对于较新的版本)安装。


# repoquery -i httpd | grep -i repo

Repository  : updates

确保您有存储库文件/etc/yum.repos.d/CentOS-Base.repo或手动创建它,至少包含以下内容:

[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
gpgcheck=0
enabled=1

[updates]
name=CentOS-$releasever - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra
gpgcheck=0
enabled=1

然后执行以下操作:


# yum clean all && yum update -y && yum install httpd -y
3lxsmp7m

3lxsmp7m2#

我们也遇到了这个问题,并在yum.conf中发现了以下内容:

exclude=httpd nginx php mysql mairadb python-psutil python2-psutil

从那里删除httpd让我们安装它

相关问题