我是靠谱客的博主 过时豌豆,这篇文章主要介绍Fix “Error: No group data available for configured repositories“ in YUM,现在分享给大家,希望可以做个参考。

Sometimes on your RHEL-like system you may encounter the following error:

复制代码
1
2
3
4
5
6
7
$ sudo yum grouplist Loaded plugins: rhnplugin, security This system is not registered with ULN. You can use up2date --register to register. ULN support will be disabled. Setting up Group Process Error: No group data available for configured repositories

This may happen when you're hosting your own YUM package repository and the group metadata in the repository is missing. This error is easily fixable on the YUM repo with createrepo command.

Log onto your repository server and go to your repo directory that contains repodata directory. Then run createrepo -g:

复制代码
1
2
$ cd /repo/CentOS/6/os/x86_64 $ createrepo -g repodata/comps.xml .

This will create the groups listing for your repository.

If you do not have the repodata/comps.xml file, try looking at the mirror that you're mirroring from. It should have this file. Sometimes it may not be copied correctly, especially if you use reposync command to sync your repos.

Check the createrepo manpages for more goodness.

Environment

  • Red Hat Enterprise Linux 5 and later
  • Installation of packages from a custom yum repository

Issue

  • How to define a package group and add individual packages to it?
  • One use case is to create rpm groups for third party packages to ease installation and generate cleaner kickstart files.

Resolution

Note: Creating custom yum repository groups is outside the scope of support and support regarding this information may be limited. This article is provided as a courtesy to our customers.

  • The group data is stored in a file called "comps.xml"  under the repodata folder.

  • First create the custom repository :

1. Create the RPM repository, and copy all the RPMs you want to use into that directory:

Raw

复制代码
1
2
3
4
# mkdir -p /usr/share/repository # cp *.rpm /usr/share/repository

2. Run createrepo command to create the repodata folder :

Raw

复制代码
1
2
3
# cd /usr/share/repository # createrepo .

Note: The createrepo package needs to be installed on the system

  • Now to create the Groups file :

3. Create the following comps.xml file under repodata folder :

Raw

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<comps> <!-- <meta> --> <!-- Meta information will go here eventually --> <!-- </meta> --> <group> <id>mygroup</id> <name>MyGroup</name> <default>true</default> <description>Description of group goes here</description> <uservisible>true</uservisible> <packagelist> <packagereq type="mandatory">package1</packagereq> <packagereq type="default">package2</packagereq> <packagereq type="optional">pacakge3</packagereq> </packagelist> </group> </comps>

Each group has an id, user visibility value, name, description, and package list. In the package list, there are three types package:

  • mandatory: the packages marked as mandatory are always installed if the group is selected.
  • default: the packages marked default are selected by default if the group is selected.
  • optional: the packages marked optional must be specifically selected even if the group is selected.

4. Rerun createrepo so that group assignments are taken into account :

Raw

复制代码
1
2
# createrepo -g repodata/comps.xml .

5.  Create the file /etc/yum.repos.d/file.repo as follows:

Raw

复制代码
1
2
3
4
5
6
# cat /etc/yum.repos.d/file.repo [myrepo] name=My Repo baseurl=file:///usr/share/repository enabled=1

6. To test :

Raw

复制代码
1
2
#yum clean all # yum --noplugins groupinfo mygroup

最后

以上就是过时豌豆最近收集整理的关于Fix “Error: No group data available for configured repositories“ in YUM的全部内容,更多相关Fix内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部