yum grouplist找不到包组,提示There is no installed groups file

问题背景:

搭建了一台内网YUM了服务器,客户端通过HTTP服务访问自己搭建的YUM服务器,执行yum grouplist,找不到包组,提示There is no installed groups file

问题描述:

[root@localhost]# yum grouplist
Loaded plugins: fastestmirror
There is no installed groups file.
Maybe run: yum groups mark convert (see man yum)
Loading mirror speeds from cached hostfile

问题定位:

yum server 端缺少groups 的定义文件(*comps.xml)

解决办法:

yum server端需使用createrepo生成groups的定义文件

Yum Server端操作:

1.查找Groups file位置,前往yum相关目录创建goup file,**注:${Groups_File}为查找到的文件**
#find / -name *comps.xml*

查找结果,comps.xml在镜像中的repodata文件夹下,/mnt是我镜像挂载点

/mnt/repodata/d87379a47bc2060f833000b9cef7f9670195fe197271d37fce5791e669265e8b-c7-x86_64-comps.xml

2.createrepo生成groups的定义文件*(感觉直接把相关comps.xml文件拷贝到YUM源目录下repodata文件夹下也行的通,下次试试)*

 createrepo -g /mnt/repodata/d87379a47bc2060f833000b9cef7f9670195fe197271d37fce5791e669265e8b-c7-x86_64-comps.xml /var/www/html/centos

注意:

  • 第一:/mnt/repodata/d87379a47bc2060f833000b9cef7f9670195fe197271d37fce5791e669265e8b-c7-x86_64-comps.xml 是我*comps.xml文件,这个根据自己实际情况填写

  • 第二:/var/www/html/centos是我YUM源软件包目录

  • 第三:如果已创建过,需更新的话使用命令 createrepo -g ${GROUPS_FILE} --update .

yum grouplist找不到包组,提示There is no installed groups file_第1张图片

Yum client端操作:

yum clean all 
yum makecache

测试,成功!

相关链接:
https://blog.csdn.net/qq43748322/article/details/103630858
https://blog.51cto.com/mengix/1663015

你可能感兴趣的:(yum源配置,yum,centos7)