We are using "Certificate based management" rather than "Classic management" to register and subscribe our RHEL servers to RHN as recommended by Red Hat. Our test system is successfully registered with Red Hat Network using the subscription-manager program. The following code in the install script, performs the check for Red Hat subscription:
Code: Select all
# Check that the Red Hat installation is valid
if [ -x /usr/sbin/rhn_check ] && ! /usr/sbin/rhn_check 2>/dev/null; then
echo "Your Red Hat Installation is not registered or does not have proper entitlements." >&2
echo "Please register or enable entitlements at rhn.redhat.com." >&2
exit 1For the time being, we have commented out these checks in the installer script to get Nagios XI installed.
Many Thanks
Kyle