Chapter 4. Prerequisites
Before proceeding to install virt-who, ensure the following prerequisites are met.
4.1. Authentication Requirements Copy linkLink copied to clipboard!
Create an account on each virtualization manager, such as VMware vCenter and Red Hat Virtualization Manager, or individual hypervisors so the virt-who agent can retrieve the list of guest virtual machines. Each connection is separate, so you can use different accounts for each connection if required. Each account, generally known as a service account, should be dedicated to this purpose, have read-only access, and have a non-expiring password.
4.2. Software Requirements Copy linkLink copied to clipboard!
The virt-who daemon must be installed on Red Hat Enterprise Linux, version 7 (recommended) or 6. For Red Hat Enterprise Linux hypervisors, the virt-who daemon must be installed on the hypervisor. For all other hypervisors, the virt-who daemon can be installed on the Satellite Server, an external Capsule Server, or a dedicated instance of Red Hat Enterprise Linux. Except for Red Hat Enterprise Linux hypervisors, Red Hat recommends installing virt-who on the Satellite Server, because it simplifies the network configuration and provides maximum availability. If you install virt-who on a dedicated instance of Red Hat Enterprise Linux, this host does not have to be registered to the Satellite Server.
4.3. Subscriptions Copy linkLink copied to clipboard!
Subscriptions are specific to organizations. Although you can configure the virt-who daemon to support multiple organizations, you cannot share subscriptions across organizations.
You must have one virtual data center subscription for each organization and for each hypervisor.
4.4. Preparing the virt-who Host Copy linkLink copied to clipboard!
Skip this procedure if virt-who is to be installed on the Satellite Server, an external Capsule Server, or a Red Hat Enterprise Linux hypervisor.
Before installing the virt-who daemon, a Red Hat Enterprise Linux instance must be installed and configured as follows.
Install Red Hat Enterprise Linux, version 7 (recommended) or 6.
Only a CLI environment is required. For help with this step, see the Red Hat Enterprise Linux 7 Installation Guide or the Red Hat Enterprise Linux 6 Installation Guide.
Install the Satellite Server’s CA certificate:
rpm -ivh http://satellite.example.com/pub/katello-ca-consumer-latest.noarch.rpm
# rpm -ivh http://satellite.example.com/pub/katello-ca-consumer-latest.noarch.rpm
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Register the Red Hat Enterprise Linux server to the Satellite Server:
subscription-manager register --username=admin --password=p@sswd \ --org=organization_label --auto-attach
# subscription-manager register --username=admin --password=p@sswd \ --org=organization_label --auto-attach
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Open a network port for HTTPS:
To enable virt-who to communicate with the subscription service, TCP port 443 must be opened.
On Red Hat Enterprise Linux 7:
firewall-cmd --add-port="443/tcp" firewall-cmd --add-port="443/tcp" --permanent
# firewall-cmd --add-port="443/tcp" # firewall-cmd --add-port="443/tcp" --permanent
Copy to Clipboard Copied! Toggle word wrap Toggle overflow On Red Hat Enterprise Linux 6:
iptables -A INPUT -m state --state NEW -p tcp --dport 443 -j ACCEPT service iptables save
# iptables -A INPUT -m state --state NEW -p tcp --dport 443 -j ACCEPT # service iptables save
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
4.5. Installing virt-who Copy linkLink copied to clipboard!
Subscribe to the Satellite Tools repository for 6.2.
On Red Hat Enterprise Linux 7:
subscription-manager repos --enable=rhel-7-server-satellite-tools-6.2-rpms
# subscription-manager repos --enable=rhel-7-server-satellite-tools-6.2-rpms
Copy to Clipboard Copied! Toggle word wrap Toggle overflow On Red Hat Enterprise Linux 6:
subscription-manager repos --enable=rhel-6-server-satellite-tools-6.2-rpms
# subscription-manager repos --enable=rhel-6-server-satellite-tools-6.2-rpms
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that the server is subscribed to the Satellite Tools repository for 6.2.
subscription-manager repos --list-enabled
# subscription-manager repos --list-enabled
Copy to Clipboard Copied! Toggle word wrap Toggle overflow If the output of this command lists the Satellite Tools repository for 6.2 then the subscription has been successful.
NoteThe virt-who package is available both from the Red Hat Satellite Tools and the Red Hat Enterprise Linux repository. The latest version of the package will be installed by the yum utility.
Install the
virt-who
package.yum install virt-who
# yum install virt-who
Copy to Clipboard Copied! Toggle word wrap Toggle overflow