Creating a copy of an RHN repository
In this recipe, I'll show you how you can set up a yum repository for Red Hat Network-based and "plain" yum repositories.
Getting ready
Before you create a copy of an RHN repository, you need to ensure that you have a valid subscription to the repository that you want to duplicate. When this prerequisite is met, you can perform this recipe from the machine that uses the subscription.
How to do it…
Before being able to create yum repositories, we need to install a couple of tools by performing the following steps:
Install the
createrepo
andyum-utils
packages using the following command:~]# yum install -y yum-utils createrepo
Now, install the Apache web server, as follows:
~]# yum install -y httpd
Syncing RHN repositories
You can only sync RHN subscriptions that you have access to. Perform the following steps:
Create a directory to hold the RHN
rhel7
repository, as follows:~]# mkdir /var/www/html/repo/rhel/rhel-x86_64-server-7/packages
Now, create
/mnt/iso
...