Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Appendix B. Importing Content ISO Images into a Disconnected Satellite
In high security environments where hosts are required to function in a closed network disconnected from the Internet, Satellite Server can provision systems with the latest security updates, errata, and packages. To accomplish this, download the Content ISOs for Red Hat Satellite from the Red Hat Customer Portal and import them into Satellite Server.
This section is not required if your Satellite Server is connected to the Internet.
B.1. Importing Content ISO Images Link kopierenLink in die Zwischenablage kopiert!
Download the product ISO image from the Red Hat Customer Portal, as follows:
- Log on to the Red Hat Customer Portal.
- At the top of the screen, click Downloads and select Red Hat Satellite.
- Click the link for the product name, such as Red Hat Enterprise Linux 6 Server (x86_64) to download the ISO image.
-
Copy all of Satellite Content ISO images to a directory Satellite can access. This example uses
/root/isos
. -
Copy all of Satellite Content ISOs to a directory that Satellite can access. This example uses
/root/isos
. Create a local directory that is shared through httpd on Satellite. This example uses
/var/www/html/pub/sat-import/
.mkdir -p /var/www/html/pub/sat-import/
# mkdir -p /var/www/html/pub/sat-import/
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Mount and recursively copy the contents of the first ISO image to the local directory:
mkdir /mnt/iso mount -o loop /root/isos/first_iso /mnt/iso cp -ruv /mnt/iso/* /var/www/html/pub/sat-import/ umount /mnt/iso rmdir /mnt/iso
# mkdir /mnt/iso # mount -o loop /root/isos/first_iso /mnt/iso # cp -ruv /mnt/iso/* /var/www/html/pub/sat-import/ # umount /mnt/iso # rmdir /mnt/iso
Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
Repeat the above step for each ISO image until you have copied all the data from the Content ISO images into
/var/www/html/pub/sat-import/
. Ensure the SELinux context for the directory is correct:
restorecon -rv /var/www/html/pub/sat-import/
# restorecon -rv /var/www/html/pub/sat-import/
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Satellite Server now contains the content from the Content ISO images. However, Satellite Server needs to point to this location as the CDN URL. In the Satellite Web UI, navigate to Content > Subscriptions.
- Click Manage Manifest.
Edit the Red Hat CDN URL field to point to the Satellite host name with the newly created directory, for example:
- Click Update and then upload your manifest using Section 4.1, “Importing a Subscription Manifest into Satellite Server”.
Satellite is now acting as its own CDN with the files located in http://server.example.com/pub/sat-import/
. This is not a requirement. The CDN can be hosted on a different machine inside the same disconnected network as long as it is accessible to Satellite Server using HTTP.
If your environment changes from disconnected to connected, you can reconfigure a disconnected Satellite to pull content directly from Red Hat Customer Portal:
- In the Satellite Web UI, navigate to Content > Subscriptions.
- Click Manage Manifest.
Edit the Red Hat CDN URL field to point to the Red Hat CDN URL:
- Click Save
Satellite Server pulls content directly from Red Hat Customer Portal on the next synchronization.
B.2. Importing Kickstart Repositories Link kopierenLink in die Zwischenablage kopiert!
Kickstart repositories are not provided by the Content ISO image. To use Kickstart repositories in your disconnected Satellite, you must download a binary DVD ISO file for the version of Red Hat Enterprise Linux that you want to use and copy the Kickstart files to Satellite.
Procedure
- Navigate to the Red Hat Customer Portal at https://access.redhat.com/ and log on.
- In the upper left of the window, click Downloads.
- Locate and click the version of Red Hat Enterprise Linux that you want to use, for example Red Hat Enterprise Linux 8.
- In the Download Red Hat Enterprise Linux window, locate the binary DVD version of the ISO image, for example, Red Hat Enterprise Linux 8.1 Binary DVD, and click Download Now.
- When the download completes, copy the ISO image to Satellite Server.
On Satellite Server, create a mount point and temporarily mount the ISO image at that location:
mkdir /mnt/iso mount -o loop rhel-8.1-x86_64-dvd.iso /mnt/iso
# mkdir /mnt/iso # mount -o loop rhel-8.1-x86_64-dvd.iso /mnt/iso
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create Kickstart directories for AppStream and BaseOS:
mkdir /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/appstream/kickstart mkdir /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/baseos/kickstart
# mkdir /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/appstream/kickstart # mkdir /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/baseos/kickstart
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Note that if you use Red Hat Enterprise Linux 7, you must create and complete all the following steps in only one directory
/var/www/html/pub/sat-import/content/dist/rhel/server/7/7.7/x86_64/kickstart/
.To the listing files
/var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/appstream/listing
and/var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/baseos/listing
, appendkickstart
with a new line:kickstart
kickstart
Copy to Clipboard Copied! Toggle word wrap Toggle overflow To the listing file
/var/www/html/pub/sat-import/content/dist/rhel8/listing
, append the version number of the operating system ISO that you use with a new line. For example, for the RHEL 8.1 binary ISO, add8.1
with a new line:8.1
8.1
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Copy the
kickstart
files from the ISO image:cp -a /mnt/iso/AppStream/* \ /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/appstream/kickstart cp -a /mnt/iso/BaseOS/* /mnt/iso/images/ \ /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/baseos/kickstart
# cp -a /mnt/iso/AppStream/* \ /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/appstream/kickstart # cp -a /mnt/iso/BaseOS/* /mnt/iso/images/ \ /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/baseos/kickstart
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Note that for BaseOS, you must also copy the contents of the
/mnt/iso/images/
directory.Copy the
.treeinfo
files from the ISO image:cp /mnt/iso/.treeinfo \ /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/appstream/kickstart/treeinfo cp /mnt/iso/.treeinfo \ /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/baseos/kickstart/treeinfo
# cp /mnt/iso/.treeinfo \ /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/appstream/kickstart/treeinfo # cp /mnt/iso/.treeinfo \ /var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/baseos/kickstart/treeinfo
Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
Open the
/var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/baseos/kickstart/treeinfo
file for editing. In the
[general]
section, make the following changes:-
Change
packagedir = AppStream/Packages
topackagedir = Packages
-
Change
repository = AppStream
torepository = .
-
Change
variant = AppStream
tovariant = BaseOS
-
Change
variants = AppStream,BaseOS
tovariants = BaseOS
-
Change
-
In the
[tree]
section, changevariants = AppStream,BaseOS
tovariants = BaseOS
. In the
[variant-BaseOS]
section, make the following changes:-
Change
packages = BaseOS/Packages
topackages = Packages
-
Change
repository = BaseOS
torepository = .
-
Change
-
Delete the
[media]
and[variant-AppStream]
sections. - Save and close the file.
Verify that the
/var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/baseos/kickstart/treeinfo
file has the following format:Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
Open the
/var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/appstream/kickstart/treeinfo
file for editing. In the
[general]
section, make the following changes:-
Change
packagedir = AppStream/Packages
topackagedir = Packages
-
Change
repository = AppStream
torepository = .
-
Change
variants = AppStream,BaseOS
tovariants = AppStream
-
Change
-
In the
[tree]
section, changevariants = AppStream,BaseOS
tovariants = AppStream
. In the
[variant-AppStream]
section, make the following changes:-
Change
packages = AppStream/Packages
topackages = Packages
-
Change
repository = AppStream
torepository = .
-
Change
-
Delete the following sections from the file:
[checksums]
,[images-x86_64]
,[images-xen]
,[media]
,[stage2]
,[variant-BaseOS]
. - Save and close the file.
Verify that the
/var/www/html/pub/sat-import/content/dist/rhel8/8.1/x86_64/appstream/kickstart/treeinfo
file has the following format:Copy to Clipboard Copied! Toggle word wrap Toggle overflow If you do not plan to use the mounted binary DVD ISO image, unmount and remove the directory:
umount /mnt/iso rmdir /mnt/iso
# umount /mnt/iso # rmdir /mnt/iso
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - In the Satellite web UI, enable the Kickstart repositories. For more information, see Section 5.7, “Enabling Red Hat Repositories”.