1.Update Subscription Manager Package, validate first that system is registered
2.-Delete the Yum Cache
3.-Clean with command to be sure that it was cleaned correctly
4.-Set the release to tie teh Red Hat OS, where you are working to the specific release to avoid to update for example from 6.6 to 6.8 Stable in this case.
These is usable if you need to have support and the application is only supported in a specific release
or if you have Access directly to internet
#subscription-manager release --set=6.7
5.-Update the OS
#yum -y
update subscription-manager*
rm –rf
/var/cache/yum/*
#yum clean
all
#subscription-manager
release --set=6.7 --proxy=http://<ipaddress_proxy>:8080 --proxyuser=<proxyuser>
-proxypass=<proxypassword>
or if you have Access directly to internet
#subscription-manager release --set=6.7
yum -y update
Comments