Chapter 4. Setting up the test environment
The first step towards certifying your product is setting up the environment where you can run the tests.
The test environment consists of one system:
- System 1: Acts as a host under test (HUT)
4.1. Setting up the host under test Copy linkLink copied to clipboard!
A system on which the product that needs certification is installed or configured is referred to as the host under test (HUT).
Prerequisites
- The HUT has RHEL version 8 or 9 installed. For convenience, Red Hat provides kickstart files to install the HUT’s operating system. Follow the instructions in the file that is appropriate for your system before launching the installation process.
Procedure
Configure the Red Hat Certification repository:
Use your RHN credentials to register your system using Red Hat Subscription Management:
subscription-manager register
# subscription-manager register
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Display the list of available subscriptions for your system:
subscription-manager list --available*
# subscription-manager list --available*
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Search for the subscription which provides the Red Hat Certification (for RHEL Server) repository and make a note of the subscription and its Pool ID.
Attach the subscription to your system. Replace the pool_ID with the Pool ID of the subscription.
subscription-manager attach --pool=<pool_ID>
# subscription-manager attach --pool=<pool_ID>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow NoteYou don’t have to attach the subscription to your system, if you enable the option Simple content access for Red Hat Subscription Management. For more details, see How do I enable Simple Content Access for Red Hat Subscription Management?
Subscribe to the Red Hat Certification channel:
On RHEL 8:
subscription-manager repos --enable=cert-1-for-rhel-8-<HOSTTYPE>-rpms
# subscription-manager repos --enable=cert-1-for-rhel-8-<HOSTTYPE>-rpms
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Replace HOSTTYPE with the system architecture. To find out the system architecture, run
uname -m
uname -m
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Example:
subscription-manager repos --enable=cert-1-for-rhel-8-x86_64-rpms
# subscription-manager repos --enable=cert-1-for-rhel-8-x86_64-rpms
Copy to Clipboard Copied! Toggle word wrap Toggle overflow On RHEL 9:
subscription-manager repos --enable=cert-1-for-rhel-9-<HOSTTYPE>-rpms
# subscription-manager repos --enable=cert-1-for-rhel-9-<HOSTTYPE>-rpms
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Replace HOSTTYPE with the system architecture. To find out the system architecture, run
uname -m
uname -m
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Example:
subscription-manager repos --enable=cert-1-for-rhel-9-x86_64-rpms
# subscription-manager repos --enable=cert-1-for-rhel-9-x86_64-rpms
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Install cloud test suite package:
yum install redhat-certification-cloud-sap
# yum install redhat-certification-cloud-sap
Copy to Clipboard Copied! Toggle word wrap Toggle overflow