C.4. Configuring a Host for Registration
Red Hat Enterprise Linux virtual machines register to Customer Portal Subscription Management by default. You must update each virtual machine configuration so that they receive updates from the correct Satellite Server or Capsule Server.
Prerequisites
Hosts must be using the following Red Hat Enterprise Linux version:
- 6.4 or later
- 7.0 or later
- All architectures of Red Hat Enterprise Linux are supported (i386, x86_64, s390x, ppc_64).
Ensure that a time synchronization tool is enabled and runs on the Satellite Servers, any Capsule Servers, and the hosts.
For Red Hat Enterprise Linux 6:
chkconfig ntpd on; service ntpd start
# chkconfig ntpd on; service ntpd startCopy to Clipboard Copied! Toggle word wrap Toggle overflow For Red Hat Enterprise Linux 7:
systemctl enable chronyd; systemctl start chronyd
# systemctl enable chronyd; systemctl start chronydCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Ensure that the daemon
rhsmcertdis enabled and running on the hosts.For Red Hat Enterprise Linux 6:
chkconfig rhsmcertd on; service rhsmcertd start
# chkconfig rhsmcertd on; service rhsmcertd startCopy to Clipboard Copied! Toggle word wrap Toggle overflow For Red Hat Enterprise Linux 7:
systemctl start rhsmcertd
# systemctl start rhsmcertdCopy to Clipboard Copied! Toggle word wrap Toggle overflow
To Configure a Host for Registration:
- Take note of the fully qualified domain name (FQDN) of the Satellite Server or Capsule Server, for example server.example.com.
- On the host, connect to a terminal on the host as the root user
Install the consumer RPM from the Satellite Server or Capsule Server to which the host is to be registered. The consumer RPM updates the content source location of the host and allows the host to download content from the content source specified in Red Hat Satellite.
rpm -Uvh http://server.example.com/pub/katello-ca-consumer-latest.noarch.rpm
# rpm -Uvh http://server.example.com/pub/katello-ca-consumer-latest.noarch.rpmCopy to Clipboard Copied! Toggle word wrap Toggle overflow